getMinute method
Gets the the minute (0 through 59).
return The minute (0 through 59). throws BiosealException An error has occurred during Bioseal Library execution.
Implementation
int getMinute() {
Pointer<Int> pMinute = calloc();
try {
var err = biosealSDK.id3BiosealDateTime_GetMinute(_pHandle.value, pMinute);
if (err != BiosealError.success.value) {
throw BiosealException(err);
}
final vMinute = pMinute.value;
return vMinute;
} finally {
calloc.free(pMinute);
}
}