getVideoEffectInterface method
@detail api @author zhushufan.ref @brief Gets video effect interfaces. @return Video effect interfaces. See ByteRTCVideoEffect{@link #ByteRTCVideoEffect}.
Implementation
FutureOr<ByteRTCVideoEffect> getVideoEffectInterface() async {
final result = await nativeCall('getVideoEffectInterface', []);
return packObject(
result,
() => ByteRTCVideoEffect(
const NativeClassOptions([], disableInit: true)));
}