toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() {
  var description = this.description;
  var id = this.id;
  var isAnyIssueType = this.isAnyIssueType;
  var isGlobalContext = this.isGlobalContext;
  var name = this.name;

  final json = <String, Object?>{};
  json[r'description'] = description;
  json[r'id'] = id;
  json[r'isAnyIssueType'] = isAnyIssueType;
  json[r'isGlobalContext'] = isGlobalContext;
  json[r'name'] = name;
  return json;
}