NotificationResponse.fromMap constructor
Implementation
factory NotificationResponse.fromMap(Map<String, dynamic> json) =>
NotificationResponse(
code: json["code"],
status: json["status"],
message: json["message"],
data: json["data"] == null
? null
: NotificationResponseData.fromMap(json["data"]),
);