disableSound property

bool get disableSound

Implementation

bool get disableSound => _disableSound;
set disableSound (bool value)

Implementation

set disableSound(bool value) {
  if (_disableSound != value) {
    _disableSound = value;
    notifyListeners();
    for (final sound in _sounds) {
      sound.updateScroll();
    }
  }
}