ImageList.fromHandle constructor

ImageList.fromHandle(
  1. Pointer<id3FaceImageList> handle
)

Creates a new instance of the ImageList class.

param handle Handle to the ImageList. throws FaceException An error has occurred during Face Library execution.

Implementation

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