getLog method
Gets the the log.
return The log. throws BiosealException An error has occurred during Bioseal Library execution.
Implementation
Log getLog() {
Log log = Log();
var err = biosealSDK.id3BiosealManifest_GetLog(_pHandle.value, log.handle);
if (err != BiosealError.success.value) {
log.dispose();
throw BiosealException(err);
}
return log;
}