setLocalView method
ZH
设置本地视频View @param view @return 0: 成功, 非0: 失败
EN
Set local video view @param view @return 0: success, non-zero: failure
Implementation
Future<int> setLocalView(RCRTCView view) async {
Map<String, dynamic> arguments = {'view': view._id};
int code = await _channel.invokeMethod('setLocalView', arguments) ?? -1;
return code;
}