CustomCallIndices constructor

CustomCallIndices({
  1. int? moduleIndex,
  2. int? methodIndex,
})

Implementation

factory CustomCallIndices({
  $core.int? moduleIndex,
  $core.int? methodIndex,
}) {
  final $result = create();
  if (moduleIndex != null) {
    $result.moduleIndex = moduleIndex;
  }
  if (methodIndex != null) {
    $result.methodIndex = methodIndex;
  }
  return $result;
}