timezoneName property

String get timezoneName

Gets the timezone name of this date.

Implementation

String get timezoneName {
  if (isUtc) return 'UTC';
  return toDateTime().timeZoneName;
}