ios_getVideoEffectHandle method

Future ios_getVideoEffectHandle()

@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}');
  }
}