Vector3 constructor Null safety
Construct a new vector with the specified values.
Implementation
factory Vector3(double x, double y, double z) =>
Vector3.zero()..setValues(x, y, z);
Construct a new vector with the specified values.
factory Vector3(double x, double y, double z) =>
Vector3.zero()..setValues(x, y, z);