ProductDetailDetailBody constructor

ProductDetailDetailBody({
  1. String? name,
  2. String? description,
  3. String? barcode,
  4. String? slug,
})

Implementation

ProductDetailDetailBody({
  this.name,
  this.description,
  this.barcode,
  this.slug,
});