contains method

bool contains(
  1. PointOfInterest poi
)

Implementation

bool contains(PointOfInterest poi) {
  assert(content == null);
  return poiholders.firstWhereOrNull((test) => test.poi == poi) != null;
}