isValid method
Indicates whether the date and/or time is valid.
return true if date and/or time is valid. throws BiosealException An error has occurred during Bioseal Library execution.
Implementation
bool isValid() {
Pointer<Bool> pResult = calloc();
try {
var err = biosealSDK.id3BiosealDateTime_IsValid(_pHandle.value, pResult);
if (err != BiosealError.success.value) {
throw BiosealException(err);
}
final vResult = pResult.value;
return vResult;
} finally {
calloc.free(pResult);
}
}