toJson method

Map<String, Object?> toJson()

Implementation

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

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