NotificationResponseModel.fromMap constructor
Implementation
factory NotificationResponseModel.fromMap(Map<String, dynamic> json) =>
NotificationResponseModel(
data: NotificationSeen.fromMap(json["data"]),
count: json["count"],
pageSize: json["page_size"],
currentPage: json["current_page"],
lastPage: json["last_page"],
);