Transaction_SCWalletBatch constructor
Transaction_SCWalletBatch({
- Iterable<
Transaction_SCWalletBatch_BatchedCall> ? calls, - SCWalletType? walletType,
Implementation
factory Transaction_SCWalletBatch({
$core.Iterable<Transaction_SCWalletBatch_BatchedCall>? calls,
SCWalletType? walletType,
}) {
final result = create();
if (calls != null) result.calls.addAll(calls);
if (walletType != null) result.walletType = walletType;
return result;
}