cleanOverlay method

void cleanOverlay()

Removes the overlay entry of ShowUp from the main OverLay.

Implementation

void cleanOverlay() {
  if (_overlayEntry != null) {
    _overlayEntry?.remove();
    _overlayEntry = null;
  }
}