GetAllNotificationsModel.fromJson constructor

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

Implementation

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