TimezoneResponse constructor

TimezoneResponse({
  1. String? timeZone,
  2. DateTime? currentLocalTime,
  3. UtcOffset? currentUtcOffset,
  4. UtcOffset? standardUtcOffset,
  5. bool? hasDayLightSaving,
  6. bool? isDayLightSavingActive,
  7. dynamic dstInterval,
})

Implementation

TimezoneResponse({
  this.timeZone,
  this.currentLocalTime,
  this.currentUtcOffset,
  this.standardUtcOffset,
  this.hasDayLightSaving,
  this.isDayLightSavingActive,
  this.dstInterval,
});