startAnims method
Method to start the animation for each controllers in the animation controller list
Implementation
@override
void startAnims(List<AnimationController> controllers) {
var delays = [-60, 250, -170, 480, 310, 30, 460, 780, 450];
for (var i = 0; i < controllers.length; i++) {
Future.delayed(Duration(milliseconds: delays[i]), () {
if (state.mounted) controllers[i].repeat(reverse: true);
});
}
}