removeMarkers method

void removeMarkers(
  1. Set<MarkerId> markerIdsToRemove
)

Removes a set of MarkerIds from the cache.

Implementation

void removeMarkers(Set<MarkerId> markerIdsToRemove) {
  markerIdsToRemove.forEach(_removeMarker);
}