SavedCalendarEventInfoBean.fromJson constructor

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

Implementation

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