UBlogCreateParams constructor

UBlogCreateParams({
  1. required List<int> tags,
  2. required String title,
  3. String? detail1,
  4. String? detail2,
  5. String? id,
  6. String? creatorId,
  7. List<String>? adminUserIds,
  8. String? subtitle,
  9. String? slug,
  10. String? content,
  11. String? metaTitle,
  12. String? metaDescription,
  13. String? source,
  14. List<String>? categories,
  15. List<String>? media,
  16. String? code,
  17. String? description,
  18. String? type,
  19. String? actionType,
  20. String? actionTitle,
  21. String? actionUri,
  22. double? latitude,
  23. double? longitude,
  24. String? parentId,
  25. List<String>? relatedBlogs,
  26. List<UBlogCreateParams>? children,
})

Implementation

UBlogCreateParams({
  required this.tags,
  required this.title,
  this.detail1,
  this.detail2,
  this.id,
  this.creatorId,
  this.adminUserIds,
  this.subtitle,
  this.slug,
  this.content,
  this.metaTitle,
  this.metaDescription,
  this.source,
  this.categories,
  this.media,
  this.code,
  this.description,
  this.type,
  this.actionType,
  this.actionTitle,
  this.actionUri,
  this.latitude,
  this.longitude,
  this.parentId,
  this.relatedBlogs,
  this.children,
});