FeedData constructor
FeedData({
- String? id,
- String? title,
- String? description,
- String? type,
- String? publishedDate,
- String? publishedDateFormat,
- String? publishedDateFormatTime,
- String? media,
- String? image,
- String? thumbImage,
- String? isActive,
- String? masterUserId,
- String? createdAt,
- String? createdTime,
- String? updatedAt,
- String? updatedTime,
Implementation
FeedData({
String? id,
String? title,
String? description,
String? type,
String? publishedDate,
String? publishedDateFormat,
String? publishedDateFormatTime,
String? media,
String? image,
String? thumbImage,
String? isActive,
String? masterUserId,
String? createdAt,
String? createdTime,
String? updatedAt,
String? updatedTime,}){
_id = id;
_title = title;
_description = description;
_type = type;
_publishedDate = publishedDate;
_publishedDateFormat = publishedDateFormat;
_publishedDateFormatTime = publishedDateFormatTime;
_media = media;
_image = image;
_thumbImage = thumbImage;
_isActive = isActive;
_masterUserId = masterUserId;
_createdAt = createdAt;
_createdTime = createdTime;
_updatedAt = updatedAt;
_updatedTime = updatedTime;
}