toJson method
Implementation
Map<String, Object?> toJson() {
var issueTypeId = this.issueTypeId;
var projectId = this.projectId;
var statusMigrations = this.statusMigrations;
final json = <String, Object?>{};
json[r'issueTypeId'] = issueTypeId;
json[r'projectId'] = projectId;
json[r'statusMigrations'] =
statusMigrations.map((i) => i.toJson()).toList();
return json;
}