feat(mobile): add three-state field serialization (#27231)

* bump to v7.22.0 and update patching

* gen client

* migrate mobile call sites
This commit is contained in:
Timon 2026-06-03 14:13:17 +02:00 committed by GitHub
parent 1bb7517da0
commit 96d521e149
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
161 changed files with 3531 additions and 3369 deletions

View file

@ -29,7 +29,7 @@ final getAllPlacesProvider = FutureProvider.autoDispose<List<SearchCuratedConten
}
final curatedContent = assetPlaces
.map((data) => SearchCuratedContent(label: data.exifInfo!.city!, id: data.id))
.map((data) => SearchCuratedContent(label: data.exifInfo.orElse(null)!.city.orElse(null)!, id: data.id))
.toList();
return curatedContent;