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