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