DeviceInfo
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);
}
Note: This class is only applicable to the Android platform.
Properties
- isLowLatencyAudioSupported
- Whether ultra-low latency audio capture and playback is supported:
- true: Supported
- false: Not supported