Utility_Batch constructor
Utility_Batch({
- Utility_BatchKind? kind,
- Iterable<
RuntimeCall> ? calls, - CallIndices? callIndices,
Implementation
factory Utility_Batch({
Utility_BatchKind? kind,
$core.Iterable<RuntimeCall>? calls,
$0.CallIndices? callIndices,
}) {
final result = create();
if (kind != null) result.kind = kind;
if (calls != null) result.calls.addAll(calls);
if (callIndices != null) result.callIndices = callIndices;
return result;
}