srawlins / timezone

Time zone database and time zone aware DateTime object for Dart.
BSD 2-Clause "Simplified" License
102 stars 54 forks source link

add offsetInHours to TimeZone #202

Open insinfo opened 1 month ago

insinfo commented 1 month ago

add offsetInHours to TimeZone

final offsetInMilliseconds = tzLocation.currentTimeZone.offset; // Conversion of milliseconds to hours final double offset = offsetInMilliseconds / (1000 60 60);