timezone_utc_offset 1.1.0 copy "timezone_utc_offset: ^1.1.0" to clipboard
timezone_utc_offset: ^1.1.0 copied to clipboard

A Dart package for getting UTC offsets for timezones. This package is platform agnostic, thus can be used on all platforms that support dart code execution.

example/example.dart

import 'package:timezone_utc_offset/timezone_utc_offset.dart';

void main() {
  final timezones = [
    "Africa/Accra",
    "America/New_York",
    "Asia/Qatar",
    "Europe/Vatican",
    "Pacific/Fiji",
    "US/Pacific",
  ];

  for (final tz in timezones) {
    print("UTC offset of '$tz' is '${getTimezoneUTCOffset(tz)}'");
  }
}
6
likes
160
points
1.26k
downloads

Publisher

unverified uploader

Weekly Downloads

A Dart package for getting UTC offsets for timezones. This package is platform agnostic, thus can be used on all platforms that support dart code execution.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on timezone_utc_offset