Subcat constructor

Subcat({
  1. String? subcatName,
  2. int? idSubcat,
  3. int? id,
  4. String? colorCode,
  5. String? pictureUrl,
})

Implementation

Subcat(
    {this.subcatName,
    this.idSubcat,
    this.id,
    this.colorCode,
    this.pictureUrl});