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. double? price,
  16. String? details,
  17. List<String>? categories,
  18. List<String>? relatedProducts,
  19. String? parentId,
  20. String? userId,
  21. int? point,
})

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.price,
  this.details,
  this.categories,
  this.relatedProducts,
  this.parentId,
  this.userId,
  this.point,
});