AEHardwareInfo constructor

const AEHardwareInfo({
  1. required String backendName,
  2. required String deviceName,
  3. required AudioFormat outputFormat,
  4. required int bitDepth,
  5. required bool isFloat,
  6. required int sampleRate,
  7. required int channels,
  8. required int periodSizeFrames,
  9. required int periodCount,
  10. required double latencyMs,
  11. required bool isExclusiveMode,
})

Implementation

const AEHardwareInfo({
  required this.backendName,
  required this.deviceName,
  required this.outputFormat,
  required this.bitDepth,
  required this.isFloat,
  required this.sampleRate,
  required this.channels,
  required this.periodSizeFrames,
  required this.periodCount,
  required this.latencyMs,
  required this.isExclusiveMode,
});