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