AudioDeviceInfo constructor

AudioDeviceInfo({
  1. required int index,
  2. String? identifier,
  3. int? numInputChannels,
  4. int? numOutputChannels,
  5. double? nominalSampleRate,
  6. bool? isDefaultInput,
  7. bool? isDefaultOutput,
  8. List<double>? supportedSampleRates,
  9. bool? isOutput,
  10. bool? isInput,
})

Implementation

AudioDeviceInfo({
  required this.index,
  this.identifier,
  this.numInputChannels,
  this.numOutputChannels,
  this.nominalSampleRate,
  this.isDefaultInput,
  this.isDefaultOutput,
  this.supportedSampleRates,
  this.isOutput,
  this.isInput,
});