BrandBody constructor

BrandBody({
  1. String? name,
  2. int? highlightRate,
  3. String? slug,
  4. String? description,
  5. String? photoId,
  6. List<String>? supplierIds,
  7. String? storeId,
})

Implementation

BrandBody({
  this.name,
  this.highlightRate,
  this.slug,
  this.description,
  this.photoId,
  this.supplierIds,
  this.storeId,
});