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