muteLocalVideoStream method Null safety
- bool mute
Mute the local video stream
Implementation
Future<int> muteLocalVideoStream(bool mute) async {
IntValue reply = await _api.muteLocalVideoStream(BoolValue()..value = mute);
return reply.value ?? -1;
}