hide method

Future hide()

Implementation

Future hide() {
  return controller!.reverse().then((value) {
    /// Reset the states
    isShowingTriggeredWidget = true;
    autoCalculatedSize = Size.zero;
    setState(() {});
  });
}