ThemeItem constructor

const ThemeItem({
  1. Key? key,
  2. ColorThemesEnum theme = ColorThemesEnum.blueDelight,
  3. bool isSelected = false,
  4. double size = 40,
  5. required ValueChanged<ColorThemesEnum> onSelected,
})

Implementation

const ThemeItem({
  super.key,
  this.theme = ColorThemesEnum.blueDelight,
  this.isSelected = false,
  this.size = 40,
  required this.onSelected,
});