Indices constructor
Implementation
factory Indices({
$core.int? x,
$core.int? y,
$core.int? z,
}) {
final _result = create();
if (x != null) {
_result.x = x;
}
if (y != null) {
_result.y = y;
}
if (z != null) {
_result.z = z;
}
return _result;
}