BlogData.fromJson constructor

BlogData.fromJson(
  1. dynamic json
)

Implementation

BlogData.fromJson(dynamic json) {
  _id = json['id'];
  _projectId = json['project_id'];
  _pageId = json['page_id'];
  _slug = json['slug'];
  _image = json['image'];
  _imageFull = json['image_full'];
  _bannerTitle = json['banner_title'];
  _title = json['title'];
  _description = json['description'];
  _seoTitle = json['seo_title'];
  _seoDescription = json['seo_description'];
  _seoKeywords = json['seo_keywords'];
  _seoImage = json['seo_image'];
  _seoImageFull = json['seo_image_full'];
  _tagsArray = json['tags_array'];
  _tagsCommaseparted = json['tags_commaseparted'];
  _publishedTime = json['published_time'];
  _publishedDate = json['published_date'];
  _createdAtTime = json['created_at_time'];
  _dateFormat = json['date_format'];
  _dateTime = json['date_time'];
  _updatedAt = json['updated_at'];
  _updatedAtTime = json['updated_at_time'];
  _isActive = json['is_active'];
  _masterUserId = json['master_user_id'];
}