timezone 0.0.2 timezone: ^0.0.2 copied to clipboard
Library to convert DateTimes between Time Zones.
TimeZone #
Library to convert dates between TimeZones.
The data for Time Zones are from [http://www.iana.org/time-zones](the IANA Time Zone Database).
Usage Example #
import 'package:timezone/browser.dart' as tz;
tz.initializeTimeZone()
.then(() {
final now = new DateTime.now().millisecondsSinceEpoch;
final nowEastern = tz.translateTime(now, 'US/Eastern');
});
Updating Time Zone database #
$ pub run tool/get -s 2014h