pop<T> method
void
pop<T>([
- T? result
Removes the top most Widget in the navigator's stack
Will return the result
to the caller of push
Implementation
void pop<T>([T? result]) => this.navigator.pop<T>(result);