popRoute method

bool popRoute({
  1. bool notify = true,
})

Implementation

bool popRoute({bool notify = true}) {
  _viewStack.removeLast();
  if (notify) notifyWithLimit();
  return _viewStack.isNotEmpty;
}