setMute method

Future<void> setMute(
  1. bool mute
)

静音推流

mute 是否静音 true:静音,false:正常

Implementation

Future<void> setMute(bool mute) async {
  return _livePusherMethodChannel.invokeMethod(
    'setMute',
    wrapArgs(arg: boolToString(mute)),
  );
}