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