NotificationMessageModel.fromJson constructor
Implementation
factory NotificationMessageModel.fromJson(Map<String, dynamic> json) =>
NotificationMessageModel(
id: json["id"],
parentId: json["parent_id"],
type: json["type"],
message: json["message"],
isSent: json["is_sent"],
);