CustomFloatingButton constructor

const CustomFloatingButton({
  1. Key? key,
  2. Alignment? alignment,
  3. EdgeInsetsGeometry? margin,
  4. Color? backgroundColor,
  5. VoidCallback? onTap,
  6. double? width,
  7. double? height,
  8. BoxDecoration? decoration,
  9. Widget? child,
})

Implementation

const CustomFloatingButton({
  Key? key,
  this.alignment,
  this.margin,
  this.backgroundColor,
  this.onTap,
  this.width,
  this.height,
  this.decoration,
  this.child,
}) : super(
        key: key,
      );