toJson method

Map<String, dynamic> toJson()

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(),
    };