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? address,
  8. String? phoneNumber,
  9. String? code,
  10. String? location,
  11. String? type,
  12. String? link,
  13. List<String>? relatedProducts,
  14. String? detail1,
  15. String? detail2,
  16. String? creatorId,
  17. List<String>? adminUserIds,
  18. List<UCategoryCreateParams>? children,
  19. List<String>? media,
})

Implementation

UCategoryCreateParams({
  required this.title,
  required this.tags,
  this.id,
  this.subtitle,
  this.parentId,
  this.order,
  this.address,
  this.phoneNumber,
  this.code,
  this.location,
  this.type,
  this.link,
  this.relatedProducts,
  this.detail1,
  this.detail2,
  this.creatorId,
  this.adminUserIds,
  this.children,
  this.media,
});