SelectedIcon constructor
const
SelectedIcon({})
Create an instance.
Implementation
const SelectedIcon({
required this.selected,
super.key,
this.selectedIcon = const Icon(
Icons.check_circle,
color: Colors.green,
),
this.unselectedIcon = const Icon(
Icons.circle_outlined,
color: Colors.grey,
),
});