FeedData constructor

FeedData({
  1. String? id,
  2. String? title,
  3. String? description,
  4. String? type,
  5. String? publishedDate,
  6. String? publishedDateFormat,
  7. String? publishedDateFormatTime,
  8. String? media,
  9. String? image,
  10. String? thumbImage,
  11. String? isActive,
  12. String? masterUserId,
  13. String? createdAt,
  14. String? createdTime,
  15. String? updatedAt,
  16. 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;
}