FloatingButtonProps constructor

const FloatingButtonProps({
  1. String? label,
  2. IconData? icon,
  3. Widget? customIcon,
  4. dynamic action()?,
  5. BoxDecoration? labelDecoration,
  6. Color? backgroundColor,
  7. TextStyle? labelStyle,
})

Implementation

const FloatingButtonProps({
  this.label,
  this.icon,
  this.customIcon,
  this.action,
  this.labelDecoration,
  this.backgroundColor,
  this.labelStyle,
});