Lotl.fromHandle constructor

Lotl.fromHandle(
  1. Pointer<id3BiosealLotl> handle
)

Creates a new instance of the Lotl class.

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

Implementation

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