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