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