Position constructor

Position({
  1. double? x,
  2. double? y,
  3. double? z,
})

Implementation

Position({
  this.x,
  this.y,
  this.z,
});