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