stopChorusCacheSync method
@hidden internal use only @detail api @hiddensdk(audiosdk) @brief Stop aligning RTC data by cache. @return See 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}');
}
}