LogItem.fromHandle constructor

LogItem.fromHandle(
  1. Pointer<id3BiosealLogItem> handle
)

Creates a new instance of the LogItem class.

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

Implementation

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