ProductEntity constructor

ProductEntity({
  1. required String? appId,
  2. String? title,
  3. String? about,
  4. double? price,
  5. double? weight,
  6. String? shopId,
  7. List<ProductImageEntity>? images,
  8. PosSizeEntity? posSize,
})

Implementation

ProductEntity({
  required this.appId,
  this.title,
  this.about,
  this.price,
  this.weight,
  this.shopId,
  this.images,
  this.posSize,
});