Indices constructor

Indices({
  1. int? x,
  2. int? y,
  3. int? z,
})

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;
}