Icon constructor

const Icon(
  1. String iconData, {
  2. Key? key,
  3. Color? color,
  4. int? size,
})

Implementation

const Icon(
  this.iconData, {
  super.key,
  this.color,
  this.size,
});