get lati long from backend

This commit is contained in:
2024-11-15 23:22:17 +01:00
parent 7182e0e324
commit 74e55f3d6b
3 changed files with 72 additions and 37 deletions

View File

@@ -5,9 +5,8 @@ class Events {
String? startDate;
String? endDate;
String? description;
String? zipCode;
String? city;
String? country;
double? latitude;
double? longitude;
Events({this.place, this.id, this.name, this.startDate});
@@ -18,8 +17,7 @@ class Events {
startDate = json["start_date"];
endDate = json['end_date'];
description = json['description'];
zipCode = json["zip_code"];
city = json['city'];
country = json['country'];
latitude = json['latitude'];
longitude = json['longitude'];
}
}