contains method
- MarkerCollection col
Check if the specified marker collection exists in this collection.
Parameters
- IN col The markers collection to be searched.
Returns
- True if the collection is in the collection, false otherwise.
Implementation
bool contains(final MarkerCollection col) {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewMarkerCollections',
'contains',
args: col.pointerId,
dependencyId: _mapPointerId,
);
return resultString['result'];
}