pop static method

StacNavigateAction pop({
  1. Map<String, dynamic>? result,
})

Pops the current route off the navigator stack.

Optionally pass a result to return to the previous route.

Implementation

static StacNavigateAction pop({Map<String, dynamic>? result}) {
  return StacNavigateAction(
    navigationStyle: NavigationStyle.pop,
    result: result,
  );
}