AudioDevices constructor

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

Creates an instance of AudioDevices.

The constructor allows you to initialize the id, type, and name of the audio device.

Implementation

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