SwitchAudioHandler constructor

SwitchAudioHandler([
  1. AudioHandler? inner
])

Creates a SwitchAudioHandler with an initial inner handler, which defaults to a no-op handler.

Implementation

SwitchAudioHandler([AudioHandler? inner])
    : this._(inner ?? BaseAudioHandler());