SelectableIcon constructor

const SelectableIcon({
  1. Key? key,
  2. required bool isSelected,
  3. IconData? selectedIcon,
  4. IconData? unSelectedIcon,
  5. double? iconSize,
  6. Color? selectedIconColor,
  7. Color? unSelectedIconColor,
  8. Color? selectedCircleColor,
  9. Color? unSelectedCircleColor,
  10. double? circleWide,
})

Implementation

const SelectableIcon({
  super.key,
  required this.isSelected,
  this.selectedIcon,
  this.unSelectedIcon,
  this.iconSize,
  this.selectedIconColor,
  this.unSelectedIconColor,
  this.selectedCircleColor,
  this.unSelectedCircleColor,
  this.circleWide,
});