UProductUpdateParams constructor

UProductUpdateParams({
  1. required String id,
  2. String? title,
  3. String? code,
  4. String? subtitle,
  5. String? description,
  6. String? slug,
  7. String? type,
  8. String? content,
  9. double? latitude,
  10. double? longitude,
  11. int? stock,
  12. double? price,
  13. String? parentId,
  14. String? userId,
  15. String? actionType,
  16. String? actionTitle,
  17. String? actionUri,
  18. String? details,
  19. List<String>? relatedProducts,
  20. List<String>? addRelatedProducts,
  21. List<String>? removeRelatedProducts,
  22. List<String>? addCategories,
  23. List<String>? removeCategories,
  24. List<int>? addTags,
  25. List<int>? removeTags,
  26. List<int>? tags,
  27. int? point,
})

Implementation

UProductUpdateParams({
  required this.id,
  this.title,
  this.code,
  this.subtitle,
  this.description,
  this.slug,
  this.type,
  this.content,
  this.latitude,
  this.longitude,
  this.stock,
  this.price,
  this.parentId,
  this.userId,
  this.actionType,
  this.actionTitle,
  this.actionUri,
  this.details,
  this.relatedProducts,
  this.addRelatedProducts,
  this.removeRelatedProducts,
  this.addCategories,
  this.removeCategories,
  this.addTags,
  this.removeTags,
  this.tags,
  this.point,
});