muteLocalVideo method
Pause/Resume pushing local video data
After the local video pushing is paused, other members in the room will receive the onUserVideoAvailable(userId, false)
callback notification. After the local video pushing is resumed, other members in the room will receive the onUserVideoAvailable(userId, true)
callback notification.
Parameters:
mute
true
: paused; false
: resumed
Implementation
Future<void> muteLocalVideo(
bool mute // true: blocked; false: enabled. Default value: false
) {
return _cloudChannel!.invokeMethod('muteLocalVideo', {
"mute": mute,
});
}