toJson method
Returns a JSON presentation of the object.
Implementation
@override
Map<String, Object> toJson({ClientUriConverter? clientUriConverter}) {
var result = <String, Object>{};
result['severity'] = severity.toJson(
clientUriConverter: clientUriConverter,
);
result['message'] = message;
var location = this.location;
if (location != null) {
result['location'] = location.toJson(
clientUriConverter: clientUriConverter,
);
}
return result;
}