Notif.fromJson constructor
Implementation
Notif.fromJson(Map<String, dynamic> json) {
this.id = json['id'];
this.title = json['title'];
this.content = json['content'];
this.type = json['type'];
this.image = json['image'];
this.link = json['link'];
this.createdAt = json['createdAt'];
}