startCaptureSession method
void
startCaptureSession()
Implementation
void startCaptureSession(Pointer<Void> libraryPtr, Pointer<Void> workflowPtr, Pointer<Void> cameraPtr) {
int error = _startCaptureSession(libraryPtr, workflowPtr, cameraPtr);
if( error != FaceCaptureErrorCode.noErrors.value ) {
throw FaceCaptureException(error);
}
}