CalendarEventInfoBean.fromJson constructor
Implementation
factory CalendarEventInfoBean.fromJson(Map<String, dynamic> json) => CalendarEventInfoBean(
id: json["id"],
title: json["title"],
startHour: json["startHour"],
startMinute: json["startMinute"],
endHour: json["endHour"],
endMinute: json["endMinute"],
time: json["time"],
);