Notif.fromJson constructor

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

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'];
}