StringArray.fromHandle constructor

StringArray.fromHandle(
  1. Pointer<id3BiosealStringArray> handle
)

Creates a new instance of the StringArray class.

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

Implementation

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