Coordinates constructor
- double? x,
- double? y,
- double? z,
Implementation
factory Coordinates({
$core.double? x,
$core.double? y,
$core.double? z,
}) {
final $result = create();
if (x != null) {
$result.x = x;
}
if (y != null) {
$result.y = y;
}
if (z != null) {
$result.z = z;
}
return $result;
}