AnimatedIconButton constructor

const AnimatedIconButton({
  1. Key? key,
  2. required String tooltip,
  3. required Function onPressed,
  4. required AnimationController controller,
  5. required IconData icon,
  6. Color? loadingColor,
  7. Color? color,
})

Implementation

const AnimatedIconButton({
  Key? key,
  required this.tooltip,
  required this.onPressed,
  required this.controller,
  required this.icon,
  this.loadingColor,
  this.color,
}) : super(key: key);