AudioDevices constructor

AudioDevices({
  1. String? id,
  2. String? type,
  3. String? name,
})

Constructs an instance of AudioDevices.

id: The unique identifier of the audio device. type: The type of the audio device. name: The name of the audio device.

Implementation

AudioDevices({
  this.id,
  this.type,
  this.name,
});