pop static method
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,
);
}