disableFaceDetection method

FutureOr<int> disableFaceDetection()

@detail api @author wangjunlin.3182 @brief Stops face detection. @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.

Implementation

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