toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (groupId != null) 'groupId': groupId!,
if (name != null) 'name': name!,
if (resolutionStatus != null) 'resolutionStatus': resolutionStatus!,
if (trackingIssues != null)
'trackingIssues':
trackingIssues!.map((value) => value.toJson()).toList(),
};