IDSFloatingActionButton constructor

const IDSFloatingActionButton({
  1. required VoidCallback onPressed,
  2. required bool isSelected,
  3. required Color activeColor,
  4. required Color inactiveColor,
  5. required Widget icon,
  6. bool enableShadow = true,
  7. Key? key,
})

IDSFloatingActionButton

Implementation

const IDSFloatingActionButton({
  required this.onPressed,
  required this.isSelected,
  required this.activeColor,
  required this.inactiveColor,
  required this.icon,
  this.enableShadow = true, // Default is true (shadow enabled)
  super.key,
});