CustomIcon constructor

const CustomIcon({
  1. Key? key,
  2. required IconData icon,
  3. double size = 24.0,
  4. Color color = Colors.black,
})

Implementation

const CustomIcon({
  super.key,
  required this.icon,
  this.size = 24.0,
  this.color = Colors.black,
});