copyWith method

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

Implementation

BlogList copyWith({  ShareUrl? shareUrl,
  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,
}) => BlogList(  shareUrl: shareUrl ?? _shareUrl,
  id: id ?? _id,
  projectId: projectId ?? _projectId,
  pageId: pageId ?? _pageId,
  slug: slug ?? _slug,
  image: image ?? _image,
  imageFull: imageFull ?? _imageFull,
  bannerTitle: bannerTitle ?? _bannerTitle,
  title: title ?? _title,
  description: description ?? _description,
  seoTitle: seoTitle ?? _seoTitle,
  seoDescription: seoDescription ?? _seoDescription,
  seoKeywords: seoKeywords ?? _seoKeywords,
  seoImage: seoImage ?? _seoImage,
  seoImageFull: seoImageFull ?? _seoImageFull,
  tagsArray: tagsArray ?? _tagsArray,
  tagsCommaseparted: tagsCommaseparted ?? _tagsCommaseparted,
  publishedTime: publishedTime ?? _publishedTime,
  publishedDate: publishedDate ?? _publishedDate,
  createdAtTime: createdAtTime ?? _createdAtTime,
  dateFormat: dateFormat ?? _dateFormat,
  dateTime: dateTime ?? _dateTime,
  updatedAt: updatedAt ?? _updatedAt,
  updatedAtTime: updatedAtTime ?? _updatedAtTime,
  isActive: isActive ?? _isActive,
  masterUserId: masterUserId ?? _masterUserId,
);