TeethModel constructor

TeethModel({
  1. required String id,
  2. Color? unSelectedColor,
  3. String? char,
  4. Color? selectedColor,
  5. int? stroke,
})

Implementation

TeethModel({
  required this.id,
  this.unSelectedColor,
  this.char,
  this.selectedColor,
  this.stroke,
});