createSoundChannel method
SilentSoundChannel
createSoundChannel({
- SoundPosition position = unpanned,
- 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,
);