removeSoundAnimation method

void removeSoundAnimation(
  1. Animation animation
)

Удаление звуковой анимации

Implementation

void removeSoundAnimation(Animation animation) {
  sound.animations.remove(animation);
  if (_selectedAnim == animation) {
    _selectedAnim = null;
  }
  notifyListeners();
}