stopCaptureSession method

void stopCaptureSession(
  1. Pointer<Void> libraryPtr
)

Implementation

void stopCaptureSession(Pointer<Void> libraryPtr) {
  int error = _stopCaptureSession(libraryPtr);
  if( error != FaceCaptureErrorCode.noErrors.value ) {
    throw FaceCaptureException(error);
  }
}