getVideoEffectInterface method

FutureOr<ByteRTCVideoEffect> getVideoEffectInterface()

@detail api @author zhushufan.ref @brief 获取视频特效接口。 @return 视频特效接口,参看 ByteRTCVideoEffect{@link #ByteRTCVideoEffect}。

Implementation

FutureOr<ByteRTCVideoEffect> getVideoEffectInterface() async {
  final result = await nativeCall('getVideoEffectInterface', []);
  return packObject(
      result,
      () => ByteRTCVideoEffect(
          const NativeClassOptions([], disableInit: true)));
}