contains method
- MarkerCollection col
Returns whether col is currently present in this MapViewMarkerCollections.
Parameters
col: The MarkerCollection to check for.
Returns
truewhen the collection is present, otherwisefalse.
Implementation
bool contains(final MarkerCollection col) {
final OperationResult resultString = objectMethod(
pointerId,
'MapViewMarkerCollections',
'contains',
args: col.pointerId,
dependencyId: _mapPointerId,
);
return resultString['result'];
}