AnimationLimiterWidget constructor

const AnimationLimiterWidget({
  1. Key? key,
  2. required Widget child,
})

Creates an AnimationLimiterWidget that will prevents the children widgets to be animated if they don't appear in the first frame where AnimationLimiter is built.

The child argument must not be null.

Implementation

const AnimationLimiterWidget({
  Key? key,
  required this.child,
}) : super(key: key);