toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'coordinates'] = this.coordinates;
if (this.count != null) {
json[r'count'] = this.count;
} else {
json[r'count'] = null;
}
json[r'datacenter'] = this.datacenter;
json[r'id'] = this.id;
json[r'location'] = this.location;
return json;
}