FloatingIconButton constructor

const FloatingIconButton({
  1. Key? key,
  2. required Function onPressed,
  3. Color? buttonColor,
  4. required IconData icon,
  5. Color? color,
})

Implementation

const FloatingIconButton(
    {Key? key,
    required this.onPressed,
    this.buttonColor,
    required this.icon,
    this.color})
    : super(key: key);