pop<T> method
void
pop<T>([
- T? result
Implementation
void pop<T>([T? result]) {
var c = currentContext;
Navigator.of(c).pop(result);
}
void pop<T>([T? result]) {
var c = currentContext;
Navigator.of(c).pop(result);
}