pop method
void
pop({
- dynamic result,
Pop the current widget from the stack.
Implementation
void pop({dynamic result}) {
if (!mounted) return;
Navigator.of(context).pop(result);
}
Pop the current widget from the stack.
void pop({dynamic result}) {
if (!mounted) return;
Navigator.of(context).pop(result);
}