AudioModeSelectDialog constructor

const AudioModeSelectDialog({
  1. Key? key,
  2. required HMSAudioMode currentAudioMode,
  3. required dynamic changeAudioMode(
    1. HMSAudioMode
    ),
})

Constructs a new instance of AudioModeSelectDialog

Implementation

const AudioModeSelectDialog({
  super.key,
  required this.currentAudioMode,
  required this.changeAudioMode,
});