FloatingActionButton constructor

const FloatingActionButton({
  1. required void onPressed(),
  2. Icon? icon,
  3. int curve = 25,
  4. int size = 56,
  5. int? height,
  6. int? width,
  7. Color? hoverColor,
  8. Color? backgroudColor,
  9. Key? key,
})

Implementation

const FloatingActionButton({
  required this.onPressed,
  this.icon,
  this.curve = 25,
  this.size = 56,
  this.height,
  this.width,
  this.hoverColor,
  this.backgroudColor,
  super.key,
});