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