WireIcon.fromIcon constructor

const WireIcon.fromIcon({
  1. Key? key,
  2. required IconData? icon,
  3. Color? color,
  4. double? size,
  5. bool fill = false,
})

Implementation

const WireIcon.fromIcon({
  Key? key,
  required this.icon,
  this.color,
  this.size,
  this.fill = false,
})  : image = null,
      super(key: key);