closeAll method

void closeAll()

Kill all the overlays.

Implementation

void closeAll() {
  for (final overlay in overlayEntrys) {
    overlay.remove();
  }
  overlayEntrys.clear();
}