hide method

void hide()

Hides the entire overlay including the toolbar and the handles.

Implementation

void hide() {
  _magnifierController.hide();
  hideHandles();
  if (_toolbar != null || _contextMenuController.isShown || _spellCheckToolbarController.isShown) {
    hideToolbar();
  }
}