getVideoEffectInterface method
@detail api @author zhushufan.ref @brief 获取视频特效接口。 @return 视频特效接口,参看 IVideoEffect{@link #IVideoEffect}。
Implementation
FutureOr<IVideoEffect> getVideoEffectInterface() async {
final result = await nativeCall('getVideoEffectInterface', []);
return packObject(result,
() => IVideoEffect(const NativeClassOptions([], disableInit: true)));
}