BlogData constructor
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,
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;
}