hideAlert method

dynamic hideAlert()

Implementation

hideAlert() {
  if (isOpened) {
    isOpened = false;
    Navigator.canPop(_context) ? Navigator.pop(_context) : null;
  }
}