SymptomsData constructor

SymptomsData({
  1. int? id = 0,
  2. String? symptomName,
  3. int? symptomId = 0,
  4. bool isSelected = false,
})

Implementation

SymptomsData({
  this.id = 0,
  this.symptomName,
  this.symptomId = 0,
  this.isSelected = false,
});