toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (detail != null) 'detail': detail!,
  if (documentationUri != null) 'documentationUri': documentationUri!,
  if (impactedDestinations != null)
    'impactedDestinations': impactedDestinations!,
  if (name != null) 'name': name!,
  if (severity != null) 'severity': severity!,
  if (title != null) 'title': title!,
};