posix_tz
Posix-Zeitzone-Paket. Dieses Paket wurde entwickelt, um die Arbeit mit Zeitzone zu vereinfachen und Entwicklern die Lese- und Schreibvorgänge von Zeitzone im Posix-Standard zu ermöglichen.
Posix-Zeitzone-Dart-Paket. Diese Bibliothek bietet Zeitzonen im Standard-Posix-Format. Die Daten werden durch Lesen des Inhalts von /usr/share/zoneinfo abgerufen.
^1.25.2^5.1.0Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
This library provides timezones in the standard Posix format. The data is obtained by reading the content of /usr/share/zoneinfo.
It's important to initialize the library before reading the timezones.
void main() {
await initializePosixTz();
}
// after initialization
final posixTz = db.get("Europe/Rome");
print(posixTz.toString()) // name:Europe/Rome, posix:CET-1CEST,M3.5.0,M10.5.0/3
PosixTz can be compared.
final posixTz1 = posixTzDb.get('Europe/Rome');
final posixTz2 = posixTzDb.get('Europe/Rome');
final posixTz3 = posixTzDb.get('Atlantic/Stanley');
print(posixTz1 == posixTz2); // true
print(posixTz1 == posixTz3); // false
posixTzDb can be expanded.
posixTzDb.add(PosixTz(name: "Ababwa",posix: "<+06>-6"));