UBlogUpdateParams constructor

UBlogUpdateParams({
  1. required String id,
  2. String? detail1,
  3. String? detail2,
  4. List<int>? addTags,
  5. List<int>? removeTags,
  6. List<int>? tags,
  7. List<String>? adminUserIds,
  8. List<String>? addAdminUserIds,
  9. List<String>? removeAdminUserIds,
  10. String? title,
  11. String? subtitle,
  12. String? slug,
  13. String? content,
  14. String? metaTitle,
  15. String? metaDescription,
  16. String? source,
  17. List<String>? addCategories,
  18. List<String>? removeCategories,
  19. List<String>? categories,
  20. List<String>? media,
  21. String? code,
  22. String? description,
  23. String? type,
  24. String? actionType,
  25. String? actionTitle,
  26. String? actionUri,
  27. double? latitude,
  28. double? longitude,
  29. String? parentId,
  30. String? creatorId,
  31. List<String>? relatedBlogs,
  32. List<String>? addRelatedBlogs,
  33. List<String>? removeRelatedBlogs,
})

Implementation

UBlogUpdateParams({
  required this.id,
  this.detail1,
  this.detail2,
  this.addTags,
  this.removeTags,
  this.tags,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
  this.title,
  this.subtitle,
  this.slug,
  this.content,
  this.metaTitle,
  this.metaDescription,
  this.source,
  this.addCategories,
  this.removeCategories,
  this.categories,
  this.media,
  this.code,
  this.description,
  this.type,
  this.actionType,
  this.actionTitle,
  this.actionUri,
  this.latitude,
  this.longitude,
  this.parentId,
  this.creatorId,
  this.relatedBlogs,
  this.addRelatedBlogs,
  this.removeRelatedBlogs,
});