captureSessionEnableAutoCapture method

void captureSessionEnableAutoCapture(
  1. Pointer<Void> libraryPtr,
  2. bool enable
)

Implementation

void captureSessionEnableAutoCapture(Pointer<Void> libraryPtr, bool enable) {
  int error = _captureSessionEnableAutoCapture(libraryPtr, enable);
  if( error != FaceCaptureErrorCode.noErrors.value ) {
    throw FaceCaptureException(error);
  }
}