SigningOutput constructor
Implementation
factory SigningOutput({
$core.String? encoded,
$core.String? unsignedTx,
}) {
final _result = create();
if (encoded != null) {
_result.encoded = encoded;
}
if (unsignedTx != null) {
_result.unsignedTx = unsignedTx;
}
return _result;
}