Location constructor

Location(
  1. String name,
  2. List<int> transitionAt,
  3. List<int> transitionZone,
  4. List<String> abbreviations,
  5. List<TimeZone> zones,
  6. List<int> leapAt,
  7. List<int> leapDiff,
  8. List<int> isStd,
  9. List<int> isUtc,
)

Implementation

Location(
    this.name,
    this.transitionAt,
    this.transitionZone,
    this.abbreviations,
    this.zones,
    this.leapAt,
    this.leapDiff,
    this.isStd,
    this.isUtc);