AudioOutputDevice constructor

const AudioOutputDevice({
  1. required String id,
  2. required String name,
  3. required AudioOutputType type,
  4. bool isSelected = false,
})

Implementation

const AudioOutputDevice({
  required this.id,
  required this.name,
  required this.type,
  this.isSelected = false,
});