clearVideoWatermark method
@detail api @hiddensdk(audiosdk) @author zhushufan.ref @brief 移除指定视频流的水印。 @return - 0: 调用成功。 - < 0 : 调用失败。查看 ReturnStatus{@link #ReturnStatus} 获得更多错误说明
Implementation
Future<int?> clearVideoWatermark() async {
$a() => ($instance as $p_a.RTCEngine).clearVideoWatermark();
$i() => ($instance as $p_i.ByteRTCEngine).clearVideoWatermark();
if (Platform.isAndroid) {
return $a();
} else if (Platform.isIOS) {
return $i();
} else {
throw UnsupportedError(
'Not Support Platform ${Platform.operatingSystem}');
}
}