FCSingleBounce constructor

const FCSingleBounce({
  1. Key? key,
  2. bool isRipple = true,
  3. Duration duration = const Duration(milliseconds: 700),
  4. double size = 50,
  5. Color color = kPrimaryColor,
  6. Curve curve = Curves.easeOut,
  7. Curve rippleCurve = Curves.easeOut,
})

Implementation

const FCSingleBounce({
  Key? key,
  this.isRipple = true,
  this.duration = const Duration(milliseconds: 700),
  this.size = 50,
  this.color = kPrimaryColor,
  this.curve = Curves.easeOut,
  this.rippleCurve = Curves.easeOut,
}) : super(key: key);