clearDownloadCache method

void clearDownloadCache()

Clears the internal download cache.

throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

void clearDownloadCache() {
  var err = biosealSDK.id3Bioseal_ClearDownloadCache(_pHandle.value);
  if (err != BiosealError.success.value) {
    throw BiosealException(err);
  }
}