UCategoryCreateParams constructor

UCategoryCreateParams({
  1. required String title,
  2. required List<int> tags,
  3. String? id,
  4. String? subtitle,
  5. String? parentId,
  6. int? order,
  7. String? location,
  8. String? type,
  9. String? link,
  10. List<String>? relatedProducts,
})

Implementation

UCategoryCreateParams({
  required this.title,
  required this.tags,
  this.id,
  this.subtitle,
  this.parentId,
  this.order,
  this.location,
  this.type,
  this.link,
  this.relatedProducts,
});