pop<T> static method

void pop<T>([
  1. T? result
])

Pops the topmost route off the navigation stack with an optional result.

Example:

BloomRouter.pop(true);

Implementation

static void pop<T>([T? result]) {
  instance.pop(result);
}