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