toJson method
Implementation
Map<String, dynamic> toJson() => {
"value": value,
"abbr": abbr,
"offset": offset,
"isdst": isdst,
"text": text,
"utc": utc == null ? [] : List<dynamic>.from(utc!.map((x) => x)),
};