Manifest.fromHandle constructor

Manifest.fromHandle(
  1. Pointer<id3BiosealManifest> handle
)

Creates a new instance of the Manifest class.

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

Implementation

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