selectVideoTrack method

Future<void> selectVideoTrack(
  1. int playerId,
  2. VideoTrack? track
)
inherited

Selects which video track (quality variant) is chosen for playback.

Pass a VideoTrack to select a specific quality. Pass null to enable automatic quality selection (adaptive streaming).

Implementation

Future<void> selectVideoTrack(int playerId, VideoTrack? track) {
  throw UnimplementedError('selectVideoTrack() has not been implemented.');
}