TimeZone class

A TimeZone represents a single time zone such as CEST or CET.

Constructors

TimeZone(int offset, {required bool isDst, required String abbreviation})
const

Properties

abbreviation String
Abbreviated name, "CET".
final
hashCode int
The hash code for this object.
read-onlyoverride
isDst bool
Is this TimeZone Daylight Savings Time?
final
offset int
Milliseconds east of UTC.
final
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override

Constants

UTC → const TimeZone
TimeZone(0, isDst: false, abbreviation: 'UTC')