TimeZoneInfo constructor

TimeZoneInfo({
  1. String? tag,
  2. int? rawOffset,
  3. int? rawDstOffset,
})

Implementation

TimeZoneInfo({
  this.tag,
  this.rawOffset,
  this.rawDstOffset,
});