GNActionIconButton constructor

const GNActionIconButton({
  1. Key? key,
  2. required String label,
  3. required IconData icon,
  4. required Color color,
  5. required VoidCallback onPressed,
  6. Color? backgroundColor,
  7. double? textSize,
  8. double? iconSize,
})

Implementation

const GNActionIconButton({
  super.key,
  required this.label,
  required this.icon,
  required this.color,
  required this.onPressed,
  this.backgroundColor,
  this.textSize,
  this.iconSize,
});