hide method
void
hide()
Hide the emoji selector.
Implementation
void hide() {
if (_isShowing) {
_hideCallback?.call();
_isShowing = false;
notifyListeners();
}
}
Hide the emoji selector.
void hide() {
if (_isShowing) {
_hideCallback?.call();
_isShowing = false;
notifyListeners();
}
}