GetAllNotificationsModel.fromJson constructor
Implementation
factory GetAllNotificationsModel.fromJson(Map<String, dynamic> json) =>
GetAllNotificationsModel(
status: json["status"],
message: json["message"],
item: ItemModel.fromJson(json["items"]),
);