BrandDTO constructor

BrandDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? name,
  7. String? slug,
  8. String? description,
  9. int? highlightRate,
  10. PhotoDTO? photo,
  11. List<SupplierDTO>? suppliers,
})

Implementation

BrandDTO(
    {super.id,
    super.createdAt,
    super.updatedAt,
    super.isActive,
    super.isDeleted,
    this.name,
    this.slug,
    this.description,
    this.highlightRate,
    this.photo,
    this.suppliers});