disableVideoEffect method

FutureOr<int> disableVideoEffect()

@detail api @author zhushufan.ref @brief Disables video effects. @return - 0: Success. - –1000: The Effects SDK is not integrated. - –1001: This API is unavailable for your Effects SDK. - –1002: Your Effects SDK's version is incompatible. - < 0: Other error. See error code table for specific instructions. @note Call enableVideoEffect{@link #ByteRTCVideoEffect#enableVideoEffect} to enable video effects.

Implementation

FutureOr<int> disableVideoEffect() async {
  return await nativeCall('disableVideoEffect', []);
}