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