GetRecentNotificationsModel.fromJson constructor
Implementation
factory GetRecentNotificationsModel.fromJson(Map<String, dynamic> json) =>
GetRecentNotificationsModel(
status: json["status"],
message: json["message"],
today: ItemModel.fromJson(json["today"]),
yesterday: ItemModel.fromJson(json["yesterday"]),
);