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