push<T> method

Future<T?> push<T>(
  1. Route<T> route
)

Implementation

Future<T?> push<T>(Route<T> route) {
  return currentState.push(route);
}