updateAnimationStatus method
Implementation
void updateAnimationStatus(
String animationId, CustomAnimationControl newStatus) {
animationPool[animationId]?.sequences?.forEach((applier, value) {
currentAnimations[applier] = value;
currentAnimationsControl[applier] = newStatus;
});
notifyListeners();
}