startAnims method
Method to start the animation for each controllers in the animation controller list
Implementation
void startAnims(List<AnimationController> controllers) {
  for (var i = 0; i < controllers.length; i++) {
    startAnim(controllers[i]);
  }
}