DateTime.fromHandle constructor

DateTime.fromHandle(
  1. Pointer<id3BiosealDateTime> handle
)

Creates a new instance of the DateTime class.

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

Implementation

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