contains method

bool contains(
  1. MarkerCollection col
)

Returns whether col is currently present in this MapViewMarkerCollections.

Parameters

Returns

  • true when the collection is present, otherwise false.

Implementation

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

  return resultString['result'];
}