Extension.fromHandle constructor

Extension.fromHandle(
  1. Pointer<id3BiosealExtension> handle
)

Creates a new instance of the Extension class.

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

Implementation

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