toJson method
Converts this object to something serializable in JSON.
Implementation
@override
Object toJson() {
final Map<String, Object> json = <String, Object>{};
void addIfPresent(String fieldName, Object? value) {
if (value != null) {
json[fieldName] = value;
}
}
addIfPresent('clusterManagerId', clusterManagerId.value);
return json;
}