setRemoteCustomStreamView method
Implementation
Future<int> setRemoteCustomStreamView(String userId, String tag, RCRTCView view) async {
Map<String, dynamic> arguments = {
'id': userId,
'tag': tag,
'view': view._id,
};
int code = await _channel.invokeMethod('setRemoteCustomStreamView', arguments) ?? -1;
return code;
}