HistoryNapSleepBean.fromJson constructor
Implementation
factory HistoryNapSleepBean.fromJson(Map<String, dynamic> json) =>
HistoryNapSleepBean(
list: List<NapSleepInfo>.from(
(json["list"] ?? []).map((x) => (NapSleepInfo.fromJson(x))),
),
timeType: json["timeType"] ?? -1,
);