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