AnimateIcon constructor

const AnimateIcon({
  1. Key? key,
  2. required Function onTap,
  3. required IconType iconType,
  4. required AnimateIcons animateIcon,
  5. double height = 50,
  6. double width = 50,
  7. Color color = Colors.black,
  8. Function? onHover,
  9. String? toolTip,
})

Implementation

const AnimateIcon({
  Key? key,
  required this.onTap,
  required this.iconType,
  required this.animateIcon,
  this.height = 50,
  this.width = 50,
  this.color = Colors.black,
  this.onHover,
  this.toolTip,
}) : super(key: key);