Symptoms constructor

Symptoms({
  1. int? categoryId = 0,
  2. String? categoryName,
  3. List<SymptomsData>? symptomsData,
  4. String? categoryColor = "#000000",
  5. int? isVisibleCategory = 1,
  6. int? isCustomType = 0,
})

Implementation

Symptoms(
    {this.categoryId = 0,
    this.categoryName,
    this.symptomsData,
    this.categoryColor = "#000000",
    this.isVisibleCategory = 1,
    this.isCustomType = 0});