Transaction_SCWalletBatch constructor

Transaction_SCWalletBatch({
  1. Iterable<Transaction_SCWalletBatch_BatchedCall>? calls,
  2. 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;
}