AnimatedSkeleton constructor
AnimatedSkeleton({
- Key? key,
- required AnimationController listenable,
- Widget? child,
Implementation
AnimatedSkeleton({Key? key, required AnimationController listenable, this.child})
: animation = CurvedAnimation(
parent: listenable,
curve: Curves.easeIn,
),
super(key: key, listenable: listenable);