toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() {
  var errors = this.errors;
  var matchedIssues = this.matchedIssues;

  final json = <String, Object?>{};
  json[r'errors'] = errors;
  json[r'matchedIssues'] = matchedIssues;
  return json;
}