AndroidAudioDeviceInfo constructor

AndroidAudioDeviceInfo({
  1. required int id,
  2. required String productName,
  3. required String? address,
  4. required bool isSource,
  5. required bool isSink,
  6. required List<int> sampleRates,
  7. required List<int> channelMasks,
  8. required List<int> channelIndexMasks,
  9. required List<int> channelCounts,
  10. required List<int> encodings,
  11. required AndroidAudioDeviceType type,
})

Implementation

AndroidAudioDeviceInfo({
  required this.id,
  required this.productName,
  required this.address,
  required this.isSource,
  required this.isSink,
  required this.sampleRates,
  required this.channelMasks,
  required this.channelIndexMasks,
  required this.channelCounts,
  required this.encodings,
  required this.type,
});