copyWith method
Implementation
TeethModel copyWith(final String? id, final Color? selectedColor,
final Color? unSelectedColor, final int? stroke) =>
TeethModel(
selectedColor: selectedColor ?? this.selectedColor,
stroke: stroke ?? this.stroke,
id: id ?? this.id,
unSelectedColor: unSelectedColor ?? this.unSelectedColor,
);