AppIconButton constructor

const AppIconButton({
  1. Key? key,
  2. required void onPressed(),
  3. required IconData icon,
  4. String tooltip = '',
  5. double iconSize = 20.0,
  6. Color? iconColor,
  7. Color? backgroundColor,
})

Implementation

const AppIconButton(
    {super.key,
    required this.onPressed,
    required this.icon,
    this.tooltip = '',
    this.iconSize = 20.0,
    this.iconColor,
    this.backgroundColor});