copyWith method

FeedData copyWith({
  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 copyWith({  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,
}) => FeedData(  id: id ?? _id,
  title: title ?? _title,
  description: description ?? _description,
  type: type ?? _type,
  publishedDate: publishedDate ?? _publishedDate,
  publishedDateFormat: publishedDateFormat ?? _publishedDateFormat,
  publishedDateFormatTime: publishedDateFormatTime ?? _publishedDateFormatTime,
  media: media ?? _media,
  image: image ?? _image,
  thumbImage: thumbImage ?? _thumbImage,
  isActive: isActive ?? _isActive,
  masterUserId: masterUserId ?? _masterUserId,
  createdAt: createdAt ?? _createdAt,
  createdTime: createdTime ?? _createdTime,
  updatedAt: updatedAt ?? _updatedAt,
  updatedTime: updatedTime ?? _updatedTime,
);