AnimatedSkeleton constructor

AnimatedSkeleton({
  1. Key? key,
  2. required AnimationController listenable,
  3. Widget? child,
})

Implementation

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