SigningOutput constructor
SigningOutput({
- String? jsonEncoded,
- SigningError? error,
Implementation
factory SigningOutput({
$core.String? jsonEncoded,
$0.SigningError? error,
}) {
final _result = create();
if (jsonEncoded != null) {
_result.jsonEncoded = jsonEncoded;
}
if (error != null) {
_result.error = error;
}
return _result;
}