CustomFAB constructor
const
CustomFAB({
- Key? key,
- required IconData firstButtonIcon,
- IconData? secondButtonIcon,
- IconData? thirdButtonIcon,
- required dynamic firstOnClick(),
- dynamic secondOnClick()?,
- dynamic thirdOnClick()?,
- Color? primaryColor,
- Color? firstButtonColor,
- Color? firstIconColor,
- Color? secondButtonColor,
- Color? secondIconColor,
- Color? thirdButtonColor,
- Color? thirdIconColor,
Implementation
const CustomFAB({
Key? key,
required this.firstButtonIcon,
this.secondButtonIcon,
this.thirdButtonIcon,
required this.firstOnClick,
this.secondOnClick,
this.thirdOnClick,
this.primaryColor,
this.firstButtonColor,
this.firstIconColor,
this.secondButtonColor,
this.secondIconColor,
this.thirdButtonColor,
this.thirdIconColor,
}) : super(key: key);