AnimateEase constructor

const AnimateEase(
  1. {Key? key,
  2. required Widget child,
  3. AnimateEaseType animate = AnimateEaseType.fadeIn,
  4. Duration duration = const Duration(seconds: 1),
  5. Duration delay = const Duration(seconds: 0),
  6. bool atRestAnimate = true,
  7. bool? isVisibleChek = false,
  8. int? animationCount}
)

Implementation

const AnimateEase({
  super.key,
  required this.child,
  this.animate = AnimateEaseType.fadeIn,
  this.duration = const Duration(seconds: 1),
  this.delay = const Duration(seconds: 0),
  this.atRestAnimate = true,
  this.isVisibleChek = false,
  this.animationCount,
});