DeviceInfo

The audio device information.

class DeviceInfo {
  const DeviceInfo({this.isLowLatencyAudioSupported});

  @JsonKey(name: 'isLowLatencyAudioSupported')
  final bool? isLowLatencyAudioSupported;
  factory DeviceInfo.fromJson(Map<String, dynamic> json) =>
      _$DeviceInfoFromJson(json);
  Map<String, dynamic> toJson() => _$DeviceInfoToJson(this);
}
Attention: This class is for Android only.

Attributes

isLowLatencyAudioSupported
Whether the audio device supports ultra-low-latency capture and playback:
  • true: The device supports ultra-low-latency capture and playback.
  • false: The device does not support ultra-low-latency capture and playback.