HawkFabMenuItem constructor

HawkFabMenuItem({
  1. required String label,
  2. required Function ontap,
  3. required Icon icon,
  4. Color? color,
  5. BorderSide buttonBorder = BorderSide.none,
  6. Color? labelBackgroundColor,
  7. Color? labelColor,
  8. String? heroTag,
})

Implementation

HawkFabMenuItem({
  required this.label,
  required this.ontap,
  required this.icon,
  this.color,
  this.buttonBorder = BorderSide.none,
  this.labelBackgroundColor,
  this.labelColor,
  this.heroTag,
});