muteLocalVideoStream method

Future<int> muteLocalVideoStream (
  1. bool mute
)

开关本地视频发送

Implementation

Future<int> muteLocalVideoStream(bool mute) async {
  assert(mute != null);
  IntValue reply = await _api.muteLocalVideoStream(BoolValue()..value = mute);
  return reply.value;
}