pop<T> method

void pop<T>([
  1. 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]) => navigator!.pop<T>(result);