Content.fromJson constructor

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

Implementation

Content.fromJson(Map<String, dynamic> json) {
  ar = json['ar'];
  en = json['en'];
  id = json['id'];
  count = json['count'];
  type = json['type'];
  notes = json['notes'];
}