push<T> static method

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

Implementation

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