SigningOutput constructor

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