loadAllPlaces function
Loads all places with optional force refresh.
Implementation
Future<List<Place>> loadAllPlaces({
bool forceRefresh = false,
bool includeEncrypted = false,
}) async {
return await PlacesService.fetchPlaces(
forceRefresh: forceRefresh,
includeEncrypted: includeEncrypted,
);
}