UCategoryUpdateParams constructor

UCategoryUpdateParams({
  1. required String id,
  2. String? title,
  3. String? subtitle,
  4. String? link,
  5. String? location,
  6. String? type,
  7. int? order,
  8. String? parentId,
  9. List<String>? relatedProducts,
  10. List<String>? addRelatedProducts,
  11. List<String>? removeRelatedProducts,
  12. List<int>? addTags,
  13. List<int>? removeTags,
  14. List<int>? tags,
})

Implementation

UCategoryUpdateParams({
  required this.id,
  this.title,
  this.subtitle,
  this.link,
  this.location,
  this.type,
  this.order,
  this.parentId,
  this.relatedProducts,
  this.addRelatedProducts,
  this.removeRelatedProducts,
  this.addTags,
  this.removeTags,
  this.tags,
});