DecryptionArgs.fromHandle constructor

DecryptionArgs.fromHandle(
  1. Pointer<id3BiosealDecryptionArgs> handle
)

Creates a new instance of the DecryptionArgs class.

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

Implementation

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