toggleVideoEnabled method

Future<void> toggleVideoEnabled(
  1. Participant participant
)

Toggles the provided participant's incoming video on and off.

Implementation

Future<void> toggleVideoEnabled(Participant participant) async {
  if (participant.member.id == me.id) {
    await toggleVideo();
  } else if (participant.video.value?.direction.value.isEmitting ?? false) {
    await participant.member.setVideoEnabled(
      !participant.video.value!.direction.value.isEnabled,
      source: participant.video.value!.source,
    );
  }
}