ios_getVideoEffectHandle method
@platform ios @hidden for internal use only @detail api @author zhushufan.ref @brief 返回视频特效句柄。私有接口。
Implementation
Future ios_getVideoEffectHandle() async {
$() => ($instance as $p_i.ByteRTCVideoEffect).getVideoEffectHandle();
if (Platform.isIOS) {
return $();
} else {
throw UnsupportedError(
'Not Support Platform ${Platform.operatingSystem}');
}
}