BiometricVerificationRule.fromHandle constructor

BiometricVerificationRule.fromHandle(
  1. Pointer<id3BiosealBiometricVerificationRule> handle
)

Creates a new instance of the BiometricVerificationRule class.

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

Implementation

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