stopChorusCacheSync method
@hidden internal use only @detail api @hiddensdk(audiosdk) @author liujingchao @brief 关闭缓存同步功能。 @return 查看 ReturnStatus{@link #ReturnStatus}。
Implementation
Future<int?> stopChorusCacheSync() async {
$a() => ($instance as $p_a.RTCEngine).stopChorusCacheSync();
$i() => ($instance as $p_i.ByteRTCEngine).stopChorusCacheSync();
if (Platform.isAndroid) {
return $a();
} else if (Platform.isIOS) {
return $i();
} else {
throw UnsupportedError(
'Not Support Platform ${Platform.operatingSystem}');
}
}