muteLiveMixStream method

Future<int> muteLiveMixStream(
  1. RCRTCMediaType type,
  2. bool mute
)

Implementation

Future<int> muteLiveMixStream(RCRTCMediaType type, bool mute) async {
  Map<String, dynamic> arguments = {
    'type': type.index,
    'mute': mute,
  };
  int code = await _channel.invokeMethod('muteLiveMixStream', arguments) ?? -1;
  return code;
}