BlogData constructor

BlogData({
  1. num? id,
  2. String? projectId,
  3. String? pageId,
  4. String? slug,
  5. String? image,
  6. String? imageFull,
  7. String? bannerTitle,
  8. String? title,
  9. String? description,
  10. String? seoTitle,
  11. String? seoDescription,
  12. String? seoKeywords,
  13. String? seoImage,
  14. String? seoImageFull,
  15. String? tagsArray,
  16. String? tagsCommaseparted,
  17. num? publishedTime,
  18. String? publishedDate,
  19. num? createdAtTime,
  20. String? dateFormat,
  21. String? dateTime,
  22. String? updatedAt,
  23. num? updatedAtTime,
  24. num? isActive,
  25. String? masterUserId,
})

Implementation

BlogData({
    num? id,
    String? projectId,
    String? pageId,
    String? slug,
    String? image,
    String? imageFull,
    String? bannerTitle,
    String? title,
    String? description,
    String? seoTitle,
    String? seoDescription,
    String? seoKeywords,
    String? seoImage,
    String? seoImageFull,
    String? tagsArray,
    String? tagsCommaseparted,
    num? publishedTime,
    String? publishedDate,
    num? createdAtTime,
    String? dateFormat,
    String? dateTime,
    String? updatedAt,
    num? updatedAtTime,
    num? isActive,
    String? masterUserId,}){
  _id = id;
  _projectId = projectId;
  _pageId = pageId;
  _slug = slug;
  _image = image;
  _imageFull = imageFull;
  _bannerTitle = bannerTitle;
  _title = title;
  _description = description;
  _seoTitle = seoTitle;
  _seoDescription = seoDescription;
  _seoKeywords = seoKeywords;
  _seoImage = seoImage;
  _seoImageFull = seoImageFull;
  _tagsArray = tagsArray;
  _tagsCommaseparted = tagsCommaseparted;
  _publishedTime = publishedTime;
  _publishedDate = publishedDate;
  _createdAtTime = createdAtTime;
  _dateFormat = dateFormat;
  _dateTime = dateTime;
  _updatedAt = updatedAt;
  _updatedAtTime = updatedAtTime;
  _isActive = isActive;
  _masterUserId = masterUserId;
}