fromJson static method
Implementation
static TimeZones? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return TimeZones(
timeZones: List<TimeZone>.from(
tdListFromJson(json['time_zones'])
.map((item) => TimeZone.fromJson(tdMapFromJson(item)))
.whereType<TimeZone>(),
),
);
}