pop method

void pop({
  1. dynamic result,
})

Pop the page

Implementation

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