Timezone constructor

Timezone({
  1. String? zoneName,
  2. int? gmtOffset,
  3. String? gmtOffsetName,
  4. String? abbreviation,
  5. String? tzName,
})

Implementation

Timezone({
  this.zoneName,
  this.gmtOffset,
  this.gmtOffsetName,
  this.abbreviation,
  this.tzName,
});