removeMarkerAt method

void removeMarkerAt(
  1. int index
)

Removes the marker in the provided index.

Implementation

void removeMarkerAt(int index) {
  _notifyMarkerListeners(MarkerAction.removeAt, <int>[index]);
}