SigningOutput constructor

SigningOutput({
  1. String? json,
})

Implementation

factory SigningOutput({
  $core.String? json,
}) {
  final _result = create();
  if (json != null) {
    _result.json = json;
  }
  return _result;
}