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