Transaction_SCWalletExecute constructor
      
      Transaction_SCWalletExecute({ 
    
    
- Transaction? transaction,
- 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;
}