hide static method

void hide()

隐藏当前显示的 Toast

Implementation

static void hide() {
  _timer?.cancel();
  _timer = null;
  _overlayEntry?.remove();
  _overlayEntry = null;
}