pop method

void pop({
  1. bool untilWhere(
    1. UiState state
    )?,
})

Back page (until: path)

Implementation

void pop({
  bool Function(UiState state)? untilWhere,
}) {
  final notifier = getNavShellNotifier(shellPath);
  notifier.pop(untilWhere: untilWhere);
}