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