allPlaces property

List<Place>? get allPlaces

Gets all cached places (local + Pod)

Implementation

List<Place>? get allPlaces {
  if (_allPlacesCache == null || _isCacheExpired()) {
    return null;
  }
  return List.unmodifiable(_allPlacesCache!);
}