show method

void show()

Show the emoji selector.

Implementation

void show() {
  if (!_isShowing) {
    _showCallback?.call();
    _isShowing = true;
    notifyListeners();
  }
}