Page<T> constructor

Page<T>({
  1. required String name,
  2. required GetPageBuilder page,
  3. String? title,
  4. bool? participatesInRootNavigator,
  5. double gestureWidth(
    1. BuildContext context
    )?,
  6. bool maintainState = true,
  7. Curve curve = Curves.linear,
  8. Alignment? alignment,
  9. Map<String, String>? parameters,
  10. bool opaque = true,
  11. Duration? transitionDuration,
  12. bool? popGesture,
  13. Bindings? binding,
  14. List<Bindings> bindings = const [],
  15. Transition? transition,
  16. CustomTransition? customTransition,
  17. bool fullscreenDialog = false,
  18. List<GetPage> children = const <GetPage>[],
  19. List<GetMiddleware>? middlewares,
  20. GetPage? unknownRoute,
  21. Object? arguments,
  22. bool showCupertinoParallax = true,
  23. bool preventDuplicates = true,
})

Implementation

Page({
  required super.name,
  required super.page,
  super.title,
  super.participatesInRootNavigator,
  super.gestureWidth,
  super.maintainState,
  super.curve,
  super.alignment,
  super.parameters,
  super.opaque,
  super.transitionDuration,
  super.popGesture,
  super.binding,
  super.bindings,
  super.transition,
  super.customTransition,
  super.fullscreenDialog,
  super.children,
  super.middlewares,
  super.unknownRoute,
  super.arguments,
  super.showCupertinoParallax,
  super.preventDuplicates,
});