toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (affectedUserEmails != null)
        'affectedUserEmails': affectedUserEmails!,
      if (attachmentData != null) 'attachmentData': attachmentData!.toJson(),
      if (description != null) 'description': description!,
      if (header != null) 'header': header!,
      if (title != null) 'title': title!,
    };