BiometricVerificationRules.fromHandle constructor

BiometricVerificationRules.fromHandle(
  1. Pointer<id3BiosealBiometricVerificationRules> handle
)

Creates a new instance of the BiometricVerificationRules class.

param handle Handle to the BiometricVerificationRules. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

BiometricVerificationRules.fromHandle(Pointer<id3BiosealBiometricVerificationRules> handle) {
  _pHandle = calloc();
  _pHandle.value = handle;
  _disposable = false;
}