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

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}