PageFlipImage constructor

const PageFlipImage({
  1. Key? key,
  2. required Animation<double> amount,
  3. ImageProvider<Object>? image,
  4. Color? backgroundColor = const Color(0xFFFFFFCC),
  5. bool isRightSwipe = false,
})

Implementation

const PageFlipImage({
  Key? key,
  required this.amount,
  this.image,
  this.backgroundColor = const Color(0xFFFFFFCC),
  this.isRightSwipe = false,
}) : super(key: key);