getContainsFingerTemplates method

bool getContainsFingerTemplates()

Gets the indicates whether the BioSeal contains finger templates.

return Indicates whether the BioSeal contains finger templates. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

bool getContainsFingerTemplates() {
  Pointer<Bool> pContainsFingerTemplates = calloc();
  try {
    var err = biosealSDK.id3Bioseal_GetContainsFingerTemplates(_pHandle.value, pContainsFingerTemplates);
    if (err != BiosealError.success.value) {
      throw BiosealException(err);
    }
    final vContainsFingerTemplates = pContainsFingerTemplates.value;
    return vContainsFingerTemplates;
  } finally {
    calloc.free(pContainsFingerTemplates);
  }
}