hide method
Implementation
void hide(BuildContext context) {
if (!_isShowing) return;
_isShowing = false;
if (context.mounted && Navigator.canPop(context)) {
Navigator.pop(context);
}
}
void hide(BuildContext context) {
if (!_isShowing) return;
_isShowing = false;
if (context.mounted && Navigator.canPop(context)) {
Navigator.pop(context);
}
}