CategoryIcon constructor

const CategoryIcon({
  1. required IconData icon,
  2. Color color = const Color.fromRGBO(211, 211, 211, 1),
  3. Color selectedColor = const Color.fromRGBO(178, 178, 178, 1),
})

Icon of Category

Implementation

const CategoryIcon({
  required this.icon,
  this.color = const Color.fromRGBO(211, 211, 211, 1),
  this.selectedColor = const Color.fromRGBO(178, 178, 178, 1),
});