ExtensionList.fromHandle constructor

ExtensionList.fromHandle(
  1. Pointer<id3BiosealExtensionList> handle
)

Creates a new instance of the ExtensionList class.

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

Implementation

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