BrandEntity constructor

const BrandEntity({
  1. required int id,
  2. required String name,
  3. required bool hidden,
  4. String? description,
  5. String? link,
  6. String? videoLink,
  7. String? image,
  8. String? seoTitle,
  9. String? seoDescription,
})

Implementation

const BrandEntity({
  required this.id,
  required this.name,
  required this.hidden,
  this.description,
  this.link,
  this.videoLink,
  this.image,
  this.seoTitle,
  this.seoDescription,
});