ProductData constructor

ProductData({
  1. int? id,
  2. String? merchantId,
  3. String? uuid,
  4. String? name,
  5. String? sku,
  6. String? price,
  7. String? description,
  8. String? quantity,
  9. String? thankYouUrl,
  10. dynamic categoryId,
  11. String? sortOrder,
  12. dynamic shippingFee,
  13. dynamic tax,
  14. String? type,
  15. String? meta,
  16. String? status,
  17. dynamic deletedAt,
  18. DateTime? createdAt,
  19. DateTime? updatedAt,
  20. String? numberSold,
  21. List<Asset>? assets,
  22. List<OrderData>? orders,
})

Implementation

ProductData({
    this.id,
    this.merchantId,
    this.uuid,
    this.name,
    this.sku,
    this.price,
    this.description,
    this.quantity,
    this.thankYouUrl,
    this.categoryId,
    this.sortOrder,
    this.shippingFee,
    this.tax,
    this.type,
    this.meta,
    this.status,
    this.deletedAt,
    this.createdAt,
    this.updatedAt,
    this.numberSold,
    this.assets,
    this.orders,
});