removeAll static method

void removeAll()

Use this method to remove all widgets what follow the component.

Implementation

static void removeAll() {
  _mapOverlayEntry.forEach((key, value) {
    value.remove();
  });
  _mapOverlayEntry.clear();
}