CustomFAB constructor

const CustomFAB({
  1. Key? key,
  2. required IconData firstButtonIcon,
  3. IconData? secondButtonIcon,
  4. IconData? thirdButtonIcon,
  5. required dynamic firstOnClick(),
  6. dynamic secondOnClick()?,
  7. dynamic thirdOnClick()?,
  8. Color? primaryColor,
  9. Color? firstButtonColor,
  10. Color? firstIconColor,
  11. Color? secondButtonColor,
  12. Color? secondIconColor,
  13. Color? thirdButtonColor,
  14. 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);