toJson method
Implementation
Map<String, Object?> toJson() {
var id = this.id;
var isAvailable = this.isAvailable;
var issueTypeId = this.issueTypeId;
var projectId = this.projectId;
var viewType = this.viewType;
final json = <String, Object?>{};
if (id != null) {
json[r'id'] = id;
}
json[r'isAvailable'] = isAvailable;
json[r'issueTypeId'] = issueTypeId;
json[r'projectId'] = projectId;
json[r'viewType'] = viewType;
return json;
}