NiceQuickActionFab constructor

const NiceQuickActionFab({
  1. Key? key,
  2. required List<NiceQuickActionItem> actions,
  3. IconData icon = Icons.add,
  4. IconData? closeIcon,
  5. Color? backgroundColor,
  6. Color? foregroundColor,
  7. double spacing = 12,
})

Implementation

const NiceQuickActionFab({
  super.key,
  required this.actions,
  this.icon = Icons.add,
  this.closeIcon,
  this.backgroundColor,
  this.foregroundColor,
  this.spacing = 12,
});