factory Coordinate.fromJson(Map<String, dynamic> json) { return Coordinate( latitude: json['latitude'], longitude: json['longitude'], ); }