SilentSoundChannel constructor

SilentSoundChannel({
  1. required double gain,
  2. SoundPosition position = unpanned,
})

Create an instance.

Implementation

SilentSoundChannel({
  required this.gain,
  this.position = unpanned,
});