toJson method
Implementation
Map<String, Object?> toJson() {
var issueId = this.issueId;
var properties = this.properties;
final json = <String, Object?>{};
if (issueId != null) {
json[r'issueID'] = issueId;
}
if (properties != null) {
json[r'properties'] = properties;
}
return json;
}