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