toJson method

Map<String, dynamic> toJson()

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)),
    };