Icon constructor

const Icon(
  1. IconData icon, {
  2. Key? key,
  3. Color? color,
  4. double? rotate,
  5. double? size,
  6. bool spin = false,
})

Implementation

const Icon(
  this.icon, {
  widgets.Key? key,
  this.color,
  this.rotate,
  this.size,
  this.spin = false,
}) : super(key: key);