Point3.xyz constructor

const Point3.xyz(
  1. num x,
  2. num y,
  3. num z
)

A point with coordinates given in order x, y, z.

Implementation

const Point3.xyz(num x, num y, this.z) : super(x: x, y: y);