ProductModel constructor

ProductModel({
  1. required String documentID,
  2. required String appId,
  3. String? title,
  4. String? about,
  5. double? price,
  6. double? weight,
  7. ShopModel? shop,
  8. List<ProductImageModel>? images,
  9. PosSizeModel? posSize,
})

Implementation

ProductModel({
  required this.documentID,
  required this.appId,
  this.title,
  this.about,
  this.price,
  this.weight,
  this.shop,
  this.images,
  this.posSize,
});