PillReminderBean.fromJson constructor
Implementation
factory PillReminderBean.fromJson(Map<String, dynamic> json) => PillReminderBean(
id: json["id"],
dateOffset: json["dateOffset"],
name: json["name"],
repeat: json["repeat"],
reminderTimeList: List<dynamic>.from(json["reminderTimeList"].map((x) => x)),
);