ResourceCallbackArgs.fromHandle constructor

ResourceCallbackArgs.fromHandle(
  1. Pointer<id3BiosealResourceCallbackArgs> handle
)

Creates a new instance of the ResourceCallbackArgs class.

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

Implementation

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