get lati long from backend
This commit is contained in:
@@ -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'];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user