hide method

void hide()

Implementation

void hide() {
  _hideTimer?.cancel();
  setState(() {
    _isHide = true;
  });
}