FloatingGlassButton constructor

const FloatingGlassButton({
  1. Key? key,
  2. required IconData sfIcon,
  3. GestureTapCallback? onTap,
  4. Color? iconColor,
  5. bool isActive = false,
  6. bool isEnabled = true,
  7. Widget? subWidget,
})

Implementation

const FloatingGlassButton({
  super.key,
  required this.sfIcon,
  this.onTap,
  this.iconColor,
  this.isActive = false,
  this.isEnabled = true,
  this.subWidget,
});