createRoute method

  1. @override
Route<T> createRoute(
  1. BuildContext context
)
override

Creates the Route that corresponds to this page.

The created Route must have its Route.settings property set to this Page.

Implementation

@override
Route<T> createRoute(BuildContext context) {
  // return GetPageRoute<T>(settings: this, page: page);
  final _page = PageRedirect(
    route: this,
    settings: this,
    unknownRoute: unknownRoute,
  ).getPageToRoute<T>(this, unknownRoute);

  return _page;
}