Timezone.fromJson constructor
Implementation
factory Timezone.fromJson(Map<String, dynamic> json) => Timezone(
zoneName: json["zoneName"],
gmtOffset: json["gmtOffset"],
gmtOffsetName: json["gmtOffsetName"],
abbreviation: json["abbreviation"],
tzName: json["tzName"],
);