toJson method
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!,
};