FeraIconButton constructor

const FeraIconButton({
  1. Key? key,
  2. required IconData enabledIcon,
  3. IconData? selectedIcon,
  4. required VoidCallback onPressed,
  5. bool isDisabled = false,
  6. bool bigFeedback = false,
})

Implementation

const FeraIconButton(
    {Key? key,
    required this.enabledIcon,
    this.selectedIcon,
    required this.onPressed,
    this.isDisabled = false,
    this.bigFeedback = false})
    : super(key: key);