SigningOutput constructor
Implementation
factory SigningOutput({
$core.List<$core.int>? signedTransaction,
$core.List<$core.int>? hash,
}) {
final _result = create();
if (signedTransaction != null) {
_result.signedTransaction = signedTransaction;
}
if (hash != null) {
_result.hash = hash;
}
return _result;
}