targetQuality property
The desired qualities of the media track.
Remarks:
- If desired qualities are present, the Adaptive Bitrate mechanism of the player will limit itself to these qualities.
- If one desired quality is present, the Adaptive Bitrate mechanism of the player will be disabled and the desired quality will be played back.
Limitations:
- Not available on iOS
Implementation
@override
AudioQuality? get targetQuality => _targetQuality;
Implementation
@override
@mustCallSuper
set targetQuality(AudioQuality? targetQuality) {
_targetQuality = targetQuality;
}