delete method

void delete(
  1. int index
)

Remove the marker at index from this collection.

Parameters

  • index: Index of the marker to delete.

Implementation

void delete(final int index) {
  objectMethod(pointerId, 'MarkerCollection', 'del', args: index);
}