MainCat constructor

MainCat({
  1. int? id,
  2. String? catName,
  3. String? pictureUrl,
  4. String? colorCode,
  5. String? colorCode2,
  6. String? maincatTranslation,
  7. List<Subcats>? subcats,
})

Implementation

MainCat(
    {this.id,
    this.catName,
    this.pictureUrl,
    this.colorCode,
    this.colorCode2,
    this.maincatTranslation,
    this.subcats});