Icon constructor

Icon({
  1. Key? key,
  2. required String icon,
  3. String? color,
  4. double? size,
})

Implementation

Icon({Key? key, required this.icon, this.color, this.size}) : super(key: key);