clearVideoWatermark method
@detail api @hiddensdk(audiosdk) @author zhushufan.ref @brief Removes video watermark from designated video stream. @return - 0: Success. - < 0 : Fail. See ReturnStatus{@link #ReturnStatus} for more details
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}');
}
}