StackPageView constructor

StackPageView({
  1. Key? key,
  2. required int index,
  3. required PageController controller,
  4. required Widget child,
  5. Axis animationAxis = Axis.vertical,
  6. Color backgroundColor = Colors.black,
})

Implementation

StackPageView({
  Key? key,
  required this.index,
  required this.controller,
  required this.child,
  this.animationAxis = Axis.vertical,
  this.backgroundColor = Colors.black,
}) : super(key: key);