update for display text

This commit is contained in:
Mohamed Nouffer
2023-01-22 18:05:15 +05:30
parent adf8d59777
commit 0d5be265ff
6 changed files with 31 additions and 10 deletions

View File

@ -11,6 +11,7 @@ class Destination {
int? series;
double? lat;
double? lon;
String? sub_loc_id;
int? location_id;
int? list_order;
String? photos;
@ -34,6 +35,7 @@ class Destination {
this.series,
this.lat,
this.lon,
this.sub_loc_id,
this.location_id,
this.list_order,
this.photos,
@ -63,6 +65,7 @@ class Destination {
series: json['series'],
lat: json['lat'],
lon: json['lon'],
sub_loc_id : json['sub_loc_id'],
location_id: json['location_id'],
list_order: json['list_order'],
photos: json['photos'],
@ -91,6 +94,7 @@ class Destination {
'series':series,
'lat':lat,
'lon':lon,
'sub_loc_id': sub_loc_id,
'location_id':location_id,
'list_order':list_order,
'photos':photos,