SavedCalendarEventInfoBean.fromJson constructor
Implementation
factory SavedCalendarEventInfoBean.fromJson(Map<String, dynamic> json) => SavedCalendarEventInfoBean(
id: json["id"],
time: List<int>.from(json["time"].map((x) => x)),
);