removeLocalView method
ZH
移除本地视频View @return 0: 成功, 非0: 失败
EN
Remove local video view @return 0: success, non-zero: failure
Implementation
Future<int> removeLocalView() async {
int code = await _channel.invokeMethod('removeLocalView') ?? -1;
return code;
}