SigningOutput constructor
SigningOutput({
- Transaction? transaction,
- List<
int> ? encoded, - String? transactionId,
- SigningError? error,
- String? errorMessage,
- SigningOutput? signingResultV2,
Implementation
factory SigningOutput({
Transaction? transaction,
$core.List<$core.int>? encoded,
$core.String? transactionId,
$2.SigningError? error,
$core.String? errorMessage,
$1.SigningOutput? signingResultV2,
}) {
final result = create();
if (transaction != null) result.transaction = transaction;
if (encoded != null) result.encoded = encoded;
if (transactionId != null) result.transactionId = transactionId;
if (error != null) result.error = error;
if (errorMessage != null) result.errorMessage = errorMessage;
if (signingResultV2 != null) result.signingResultV2 = signingResultV2;
return result;
}