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