SwiperCardWrapper constructor

const SwiperCardWrapper({
  1. Key? key,
  2. required Widget child,
  3. double initialScale = 1,
  4. double initialYOffset = 0,
  5. bool fire = false,
  6. required AnimationController animationController,
})

Implementation

const SwiperCardWrapper({
  Key? key,
  required this.child,
  this.initialScale = 1,
  this.initialYOffset = 0,
  this.fire = false,
  required this.animationController,
}) : super(key: key);