PageFlipEffect constructor

PageFlipEffect({
  1. required Animation<double> amount,
  2. required Image image,
  3. Color? backgroundColor,
  4. double radius = 0.18,
  5. required bool isRightSwipe,
})

Implementation

PageFlipEffect({
  required this.amount,
  required this.image,
  this.backgroundColor,
  this.radius = 0.18,
  required this.isRightSwipe,
}) : super(repaint: amount);