pop method

void pop({
  1. dynamic result,
  2. bool rootNavigator = false,
})

Pop the page

Implementation

void pop({dynamic result, bool rootNavigator = false}) {
  if (state == null) return;
  StateAction.pop(state!, result: result, rootNavigator: rootNavigator);
}