addSoundAnimation method

void addSoundAnimation()

Добавление звуковой анимации

Implementation

void addSoundAnimation() {
  final scroll = _comicsViewModel.scroll;
  sound.animations.add(
    SoundAnimation(start: scroll.round(), end: scroll.round()),
  );
  notifyListeners();
}