FeedData.fromJson constructor

FeedData.fromJson(
  1. dynamic json
)

Implementation

FeedData.fromJson(dynamic json) {
  _id = json['id'];
  _title = json['title'];
  _description = json['description'];
  _type = json['type'];
  _publishedDate = json['published_date'];
  _publishedDateFormat = json['published_date_format'];
  _publishedDateFormatTime = json['published_date_format_time'];
  _media = json['media'];
  _image = json['image'];
  _thumbImage = json['thumb_image'];
  _isActive = json['is_active'];
  _masterUserId = json['master_user_id'];
  _createdAt = json['created_at'];
  _createdTime = json['created_time'];
  _updatedAt = json['updated_at'];
  _updatedTime = json['updated_time'];
}