CalendarEventInfoBean.fromJson constructor

CalendarEventInfoBean.fromJson(
  1. Map<String, dynamic> json
)

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"],
    );