SigningOutput constructor

SigningOutput({
  1. String? json,
  2. SigningError? error,
  3. String? errorMessage,
  4. 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;
}