FCCFloatingActionItem constructor

const FCCFloatingActionItem({
  1. required IconData icon,
  2. required VoidCallback onTap,
  3. Color? backgroundColor,
  4. Color? iconColor,
  5. String? label,
})

Implementation

const FCCFloatingActionItem({
  required this.icon,
  required this.onTap,
  this.backgroundColor,
  this.iconColor,
  this.label,
});