getVerifyAll method

bool getVerifyAll()

Gets the indicates whether all verification rules must be respected.

return Indicates whether all verification rules must be respected. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

bool getVerifyAll() {
  Pointer<Bool> pVerifyAll = calloc();
  try {
    var err = biosealSDK.id3BiosealBiometricVerificationRules_GetVerifyAll(_pHandle.value, pVerifyAll);
    if (err != BiosealError.success.value) {
      throw BiosealException(err);
    }
    final vVerifyAll = pVerifyAll.value;
    return vVerifyAll;
  } finally {
    calloc.free(pVerifyAll);
  }
}