AudioDevicePickerDialog constructor

const AudioDevicePickerDialog({
  1. Key? key,
  2. required List<AudioDevice> devices,
  3. AudioDevice? currentDevice,
  4. Map<AudioSourceType, String>? deviceNames,
  5. String? dialogTitle,
})

Implementation

const AudioDevicePickerDialog({
  super.key,
  required this.devices,
  this.currentDevice,
  this.deviceNames,
  this.dialogTitle,
});