Transaction_SCWalletExecute constructor

Transaction_SCWalletExecute({
  1. Transaction? transaction,
  2. SCWalletType? walletType,
})

Implementation

factory Transaction_SCWalletExecute({
  Transaction? transaction,
  SCWalletType? walletType,
}) {
  final result = create();
  if (transaction != null) result.transaction = transaction;
  if (walletType != null) result.walletType = walletType;
  return result;
}