muteLocalVideoStream method Null safety

Future<int> muteLocalVideoStream(
  1. 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;
}