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