timezoneName property
String
get
timezoneName
Gets the timezone name of this date.
Implementation
String get timezoneName {
if (isUtc) return 'UTC';
return toDateTime().timeZoneName;
}
Gets the timezone name of this date.
String get timezoneName {
if (isUtc) return 'UTC';
return toDateTime().timeZoneName;
}