SigningOutput constructor
Implementation
factory SigningOutput({
$core.List<$core.int>? encoded,
$core.List<$core.int>? hash,
$0.SigningError? error,
$core.String? errorMessage,
}) {
final $result = create();
if (encoded != null) {
$result.encoded = encoded;
}
if (hash != null) {
$result.hash = hash;
}
if (error != null) {
$result.error = error;
}
if (errorMessage != null) {
$result.errorMessage = errorMessage;
}
return $result;
}