ProductData constructor
ProductData({
- int? id,
- String? merchantId,
- String? uuid,
- String? name,
- String? sku,
- String? price,
- String? description,
- String? quantity,
- String? thankYouUrl,
- dynamic categoryId,
- String? sortOrder,
- dynamic shippingFee,
- dynamic tax,
- String? type,
- String? meta,
- String? status,
- dynamic deletedAt,
- DateTime? createdAt,
- DateTime? updatedAt,
- String? numberSold,
- List<
Asset> ? assets, - 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,
});