toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (code != null) 'code': code!,
      if (details != null) 'details': details!,
      if (documentationLink != null) 'documentationLink': documentationLink!,
      if (severity != null) 'severity': severity!,
    };