UCategoryUpdateParams constructor

UCategoryUpdateParams({
  1. required String id,
  2. String? title,
  3. String? subtitle,
  4. String? link,
  5. String? location,
  6. String? address,
  7. String? phoneNumber,
  8. String? code,
  9. String? type,
  10. int? order,
  11. String? parentId,
  12. List<String>? relatedProducts,
  13. List<int>? addTags,
  14. List<int>? removeTags,
  15. List<int>? tags,
  16. String? detail1,
  17. String? detail2,
  18. List<String>? adminUserIds,
  19. List<String>? addAdminUserIds,
  20. List<String>? removeAdminUserIds,
  21. List<String>? media,
})

Implementation

UCategoryUpdateParams({
  required this.id,
  this.title,
  this.subtitle,
  this.link,
  this.location,
  this.address,
  this.phoneNumber,
  this.code,
  this.type,
  this.order,
  this.parentId,
  this.relatedProducts,
  this.addTags,
  this.removeTags,
  this.tags,
  this.detail1,
  this.detail2,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
  this.media,
});