Sound constructor

Sound({
  1. bool successBeepEnabled = true,
  2. SoundType soundType = SoundType.MODERN_BEEP,
})

Implementation

Sound({
  this.successBeepEnabled = true,
  this.soundType = SoundType.MODERN_BEEP,
});