removeAt method

void removeAt(
  1. int index
)

Remove collection.

Parameters

  • IN index The collection index

Throws

  • An exception if it fails.

Implementation

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