PageFlipBuilder constructor

const PageFlipBuilder({
  1. Key? key,
  2. required Animation<double> amount,
  3. Color? backgroundColor,
  4. required Widget child,
  5. required int pageIndex,
  6. required bool isRightSwipe,
})

Implementation

const PageFlipBuilder({
  Key? key,
  required this.amount,
  this.backgroundColor,
  required this.child,
  required this.pageIndex,
  required this.isRightSwipe,
}) : super(key: key);