isSketches method
- MarkerCollection coll
Returns true when coll is one of the internal MarkerSketches collections.
Parameters
coll: The MarkerCollection to inspect.
Returns
trueif the collection is a sketches collection, otherwisefalse.
Implementation
bool isSketches(final MarkerCollection coll) {
final OperationResult resultString = objectMethod(
pointerId,
'MapViewMarkerCollections',
'isSketches',
args: coll.pointerId,
dependencyId: _mapPointerId,
);
return resultString['result'];
}