hide method

void hide()

Hide the emoji selector.

Implementation

void hide() {
  if (_isShowing) {
    _hideCallback?.call();
    _isShowing = false;
    notifyListeners();
  }
}