isFull method

bool isFull()

Checks if the frame buffer is full and ready to authenticate for all holograms.

return A value indicating whether the frame buffer is full. throws DocumentException An error has occurred during Document Library execution.

Implementation

bool isFull() {
  Pointer<Bool> pResult = calloc();
  try {
    var err = documentSDK.id3DocumentAuthenticator_IsFull(_pHandle.value, pResult);
    if (err != DocumentError.success.value) {
      throw DocumentException(err);
    }
    final vResult = pResult.value;
    return vResult;
  } finally {
    calloc.free(pResult);
  }
}