UProductCreateParams constructor

UProductCreateParams({
  1. required String title,
  2. required List<int> tags,
  3. String? code,
  4. String? subtitle,
  5. String? description,
  6. String? actionType,
  7. String? actionTitle,
  8. String? actionUri,
  9. String? slug,
  10. String? type,
  11. String? content,
  12. double? latitude,
  13. double? longitude,
  14. int? stock,
  15. String? details,
  16. List<String>? categories,
  17. List<String>? relatedProducts,
  18. String? parentId,
  19. String? creatorId,
  20. int? point,
  21. String? phoneNumber,
  22. String? address,
  23. String? detail1,
  24. String? detail2,
  25. String? id,
  26. List<String>? adminUserIds,
  27. int? order,
  28. List<UProductCreateParams>? children,
  29. List<String>? media,
})

Implementation

UProductCreateParams({
  required this.title,
  required this.tags,
  this.code,
  this.subtitle,
  this.description,
  this.actionType,
  this.actionTitle,
  this.actionUri,
  this.slug,
  this.type,
  this.content,
  this.latitude,
  this.longitude,
  this.stock,
  this.details,
  this.categories,
  this.relatedProducts,
  this.parentId,
  this.creatorId,
  this.point,
  this.phoneNumber,
  this.address,
  this.detail1,
  this.detail2,
  this.id,
  this.adminUserIds,
  this.order,
  this.children,
  this.media,
});