RoutePageBuilder<T extends Object> typedef

RoutePageBuilder<T extends Object> = Page Function(T route, LocalKey key, PopInvokedWithResultCallback<Object?> onPopInvoked)

Builds a Flutter page for one typed route object and stack entry key.

Implementation

typedef RoutePageBuilder<T extends Object> = Page<dynamic> Function(
  T route,
  LocalKey key,
  PopInvokedWithResultCallback<Object?> onPopInvoked,
);