removeAt method

void removeAt(
  1. int index
)

Remove collection.

Parameters

  • IN index The collection index

Implementation

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