Skip to main content
Version: 1.1.x

Set Video Quality - Flutter

  • Set Video Quality feature allows participants to set other participant's video quality during the room.

  • Participant class provides the setQuality() method to set participant's video quality.

ElevatedButton(
child: Text("Set High Quality"),
onPressed: () {
// Set Video Quality

// High Quality
participant.setQuality('high');

// Medium Quality
participant.setQuality('med');

// Low Quality
participant.setQuality('low');

},
),

Got a Question? Ask us on discord