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