RoundIconButton constructor

const RoundIconButton({
  1. Key? key,
  2. required double padding,
  3. required double size,
  4. required VoidCallback onClick,
  5. required Color foreground,
  6. required IconData icon,
  7. required Color primary,
})

Implementation

const RoundIconButton({
  super.key,
  required this.padding,
  required this.size,
  required this.onClick,
  required this.foreground,
  required this.icon,
  required this.primary,
});