CallIndices constructor

CallIndices({
  1. CustomCallIndices? custom,
})

Implementation

factory CallIndices({
  CustomCallIndices? custom,
}) {
  final $result = create();
  if (custom != null) {
    $result.custom = custom;
  }
  return $result;
}