createSoundChannel method

  1. @override
SilentSoundChannel createSoundChannel({
  1. SoundPosition position = unpanned,
  2. double gain = 0.7,
})
override

Get a channel with the given options.

Implementation

@override
SilentSoundChannel createSoundChannel({
  final SoundPosition position = unpanned,
  final double gain = 0.7,
}) =>
    SilentSoundChannel(
      gain: gain,
      position: position,
    );