removeAt method

void removeAt(
  1. int index
)

Remove the collection at index from the map view.

Parameters

  • index: Index of the collection to remove.

Implementation

void removeAt(final int index) {
  objectMethod(
    pointerId,
    'MapViewMarkerCollections',
    'remove',
    args: index,
    dependencyId: _mapPointerId,
  );
}