setupAnimations function

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

Implementation

void setupAnimations(Iterable<AnimationInfo> animations, TickerProvider vsync) {
  for (var animation in animations) {
    createAnimation(animation, vsync);
  }
}