push<T> static method

Future<T?> push<T>(
  1. BuildContext context,
  2. Route route
)

Implementation

static Future<T?> push<T>(BuildContext context, Route route) {
  return of(context).push(route);
}