TimezoneModel constructor

TimezoneModel({
  1. String? value,
  2. String? abbr,
  3. double? offset,
  4. bool? isdst,
  5. String? text,
  6. List<String>? utc,
})

Implementation

TimezoneModel({
  this.value,
  this.abbr,
  this.offset,
  this.isdst,
  this.text,
  this.utc,
});