DateTimeArray.fromHandle constructor

DateTimeArray.fromHandle(
  1. Pointer<id3BiosealDateTimeArray> handle
)

Creates a new instance of the DateTimeArray class.

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

Implementation

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