SwipeablePageRoute<T> constructor

SwipeablePageRoute<T>({
  1. required WidgetBuilder builder,
  2. int? notificationDepth,
  3. String? title,
  4. RouteSettings? settings,
  5. bool maintainState = true,
})

Implementation

SwipeablePageRoute({
  required this.builder,
  int? notificationDepth,
  this.title,
  RouteSettings? settings,
  this.maintainState = true,
}) : super(settings: settings, fullscreenDialog: false) {
  SwipeableRouteTransitionMixin.notificationDepth = notificationDepth;
}