SigningOutput constructor
SigningOutput({})
Implementation
factory SigningOutput({
$core.List<$core.int>? signedTransaction,
$0.SigningError? error,
$core.String? errorMessage,
$core.List<$core.int>? hash,
}) {
final result = create();
if (signedTransaction != null) result.signedTransaction = signedTransaction;
if (error != null) result.error = error;
if (errorMessage != null) result.errorMessage = errorMessage;
if (hash != null) result.hash = hash;
return result;
}