AnimateEase constructor
const
AnimateEase(- {Key? key,
- required Widget child,
- AnimateEaseType animate = AnimateEaseType.fadeIn,
- Duration duration = const Duration(seconds: 1),
- Duration delay = const Duration(seconds: 0),
- bool atRestAnimate = true,
- bool? isVisibleChek = false,
- 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,
});