buildPageRoute method
PageRoute
buildPageRoute({
- required Widget child,
- required bool fullScreenDialog,
- required VoidCallback? onSystemPop,
Pushes route to Navigator
Implementation
PageRoute buildPageRoute({
required Widget child,
required bool fullScreenDialog,
required VoidCallback? onSystemPop,
}) {
return defaultRouteBuilder.buildPageRoute(
fullScreenDialog: fullScreenDialog,
onSystemPop: onSystemPop,
child: child,
);
}