CoustomFloatingActionButton constructor

const CoustomFloatingActionButton({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. IconData? icon,
  5. Color? iconColor,
  6. double? iconSize,
  7. double? buttonRadius,
  8. Color? bgcolors,
  9. LinearGradient? gradient,
  10. Color? borderColor,
  11. double? borderWidth,
  12. required Function onPress,
})

Implementation

const CoustomFloatingActionButton({
  super.key,
  this.width,
  this.height,
  this.icon,
  this.iconColor,
  this.iconSize,
  this.buttonRadius,
  this.bgcolors,
  this.gradient,
  this.borderColor,
  this.borderWidth,
  required this.onPress,

});