DecodingTransactionOutput constructor
      
      DecodingTransactionOutput({ 
    
    
- RawMessage? transaction,
- SigningError? error,
- String? errorMessage,
Implementation
factory DecodingTransactionOutput({
  RawMessage? transaction,
  $0.SigningError? error,
  $core.String? errorMessage,
}) {
  final $result = create();
  if (transaction != null) {
    $result.transaction = transaction;
  }
  if (error != null) {
    $result.error = error;
  }
  if (errorMessage != null) {
    $result.errorMessage = errorMessage;
  }
  return $result;
}