toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      "type": type,
      "maxNumber": maxNumber,
      "list": List<dynamic>.from(list.map((x) => x)),
      "statet": state,
      "time": time,
      "calendarEventInfo": calendarEventInfo,
    };