NavigationGestureController startPopGesture()

Starts a gesture that results in popping the navigator.

Source

NavigationGestureController startPopGesture() {
  if (canPop())
    return _history.last.startPopGesture(this);
  return null;
}