Show Google place types in selection cards
All checks were successful
Build and deploy Flutter Web / build (push) Successful in 2m11s

This commit is contained in:
Ruslan Bakiev
2026-05-13 22:24:20 +07:00
parent 29e856bbd8
commit 28e8cee6e6
3 changed files with 127 additions and 15 deletions

View File

@@ -90,6 +90,8 @@ class PlaceRecommendation {
required this.photoUrls,
required this.coordinate,
required this.traits,
required this.googlePrimaryType,
required this.googleTypes,
});
final String id;
@@ -99,6 +101,8 @@ class PlaceRecommendation {
final List<String> photoUrls;
final LatLng coordinate;
final Set<PlaceTrait> traits;
final String? googlePrimaryType;
final List<String> googleTypes;
String get coverPhotoUrl => photoUrls.first;
}