ErpThemeIconButton constructor

const ErpThemeIconButton({
  1. Key? key,
  2. required IconData icon,
  3. required String tooltip,
  4. required Color activeColor,
  5. VoidCallback? onPressed,
  6. Color? iconColor,
  7. bool filled = false,
})

Implementation

const ErpThemeIconButton({
  super.key,
  required this.icon,
  required this.tooltip,
  required this.activeColor,
  this.onPressed,
  this.iconColor,
  this.filled = false,
});