AndroidMicrophoneInfo constructor

AndroidMicrophoneInfo({
  1. required String description,
  2. required int id,
  3. required int type,
  4. required String address,
  5. required AndroidMicrophoneLocation location,
  6. required int group,
  7. required int indexInTheGroup,
  8. required List<double> position,
  9. required List<double> orientation,
  10. required List<List<double>> frequencyResponse,
  11. required List<List<int>> channelMapping,
  12. required double sensitivity,
  13. required double maxSpl,
  14. required double minSpl,
  15. required AndroidMicrophoneDirectionality directionality,
})

Implementation

AndroidMicrophoneInfo({
  required this.description,
  required this.id,
  required this.type,
  required this.address,
  required this.location,
  required this.group,
  required this.indexInTheGroup,
  required this.position,
  required this.orientation,
  required this.frequencyResponse,
  required this.channelMapping,
  required this.sensitivity,
  required this.maxSpl,
  required this.minSpl,
  required this.directionality,
});