timezoneName property

String get timezoneName

Timezone name of this Hora based on UTC/local mode.

Implementation

String get timezoneName {
  if (!isValid) return 'Invalid';
  return isUtc ? 'UTC' : toDateTime().timeZoneName;
}