pop<T> method

void pop<T>([
  1. T? result
])

Pops the current screen off the navigation stack

Implementation

void pop<T>([T? result]) {
  Navigator.pop(this, result);
}