podPlaces property

List<Place>? get podPlaces

Gets cached Pod places only.

Implementation

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