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