timeZone property

String timeZone

Implementation

String get timeZone {
  var h = offset.inHours;
  if (dstOffset.inHours == 0) {
    return 'GMT${h.tSign}:00';
  } else {
    return 'DST${h.tSign}:00';
  }
}