Icon constructor

const Icon({
  1. Key? key,
  2. required String icon,
  3. Color? color,
})

Implementation

const Icon({super.key, required this.icon, this.color});