setupAnimations function

void setupAnimations(
  1. Iterable<AnimationInfo> animations,
  2. TickerProvider vsync
)

Implementation

void setupAnimations(Iterable<AnimationInfo> animations, TickerProvider vsync) {
  animations.forEach((animation) => createAnimation(animation, vsync));
}