SmoothIconButton constructor

const SmoothIconButton({
  1. Key? key,
  2. required IconData icon,
  3. required VoidCallback? onPressed,
})

Implementation

const SmoothIconButton({
  super.key,
  required this.icon,
  required this.onPressed,
});