Skip to main content
Version: 1.1.x

Remove Participant - Flutter

  • Whenever any participant (having privileges) wants to remove other participant in room, he/she can do it with this feature.

  • Participant class provides the remove() method to remove participant from the room.

ElevatedButton(
child: Text("Remove Participant"),
onPressed: () {
participant.remove();
},
),
note

To remove any participant, you must have appropriate permissions

Got a Question? Ask us on discord