setTimeZoneOffset method

void setTimeZoneOffset(
  1. int offsetInSeconds
)

Sets the time zone offset in seconds.

param offsetInSeconds The time zone offset in seconds. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

void setTimeZoneOffset(int offsetInSeconds) {
  var err = biosealSDK.id3Bioseal_SetTimeZoneOffset(_pHandle.value, offsetInSeconds);
  if (err != BiosealError.success.value) {
    throw BiosealException(err);
  }
}