fanLikeAnimationConfig top-level constant

FanAnimationConfig const fanLikeAnimationConfig

Implementation

const FanAnimationConfig fanLikeAnimationConfig = FanAnimationConfig(
  animationDurationInMillisecond: 1200,
  rotationAnimationConfig: RotationAnimationConfig(
    enabled: true,
    curve: Curves.easeInOutCubic,
    animationStartDelay: 0.2,
    animationFinishDelay: 0,
  ),
  opacityAnimationConfig: OpacityAnimationConfig(
    enabled: true,
    curve: Curves.easeInOutCubic,
    animationStartDelay: 0,
    animationFinishDelay: 0.6,
  )
);