clear method
Clears all internal data.
throws BiosealException An error has occurred during Bioseal Library execution.
Implementation
void clear() {
var err = biosealSDK.id3Bioseal_Clear(_pHandle.value);
if (err != BiosealError.success.value) {
throw BiosealException(err);
}
}