pop method

bool pop()

Did the pop proceed

Implementation

bool pop() {
  final pop = routes!.last.onPop!();
  update();
  return pop ?? true;
}