pop static method

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

Pop the page

Implementation

static void pop(dynamic state, {dynamic result, bool rootNavigator = false}) {
  _updateState(_findStateName(state), "pop", {
    "result": result,
    "rootNavigator": rootNavigator,
  });
}