isSketches method

bool isSketches(
  1. MarkerCollection coll
)

Check if the given collection is a sketches collection.

Parameters

  • IN coll The collection to be checked

Returns

  • True if the collection is a sketches collection, false otherwise

Implementation

bool isSketches(final MarkerCollection coll) {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewMarkerCollections',
    'isSketches',
    args: coll.pointerId,
    dependencyId: _mapPointerId,
  );

  return resultString['result'];
}