FABProps constructor

const FABProps({
  1. required Widget icon,
  2. String? label,
  3. void onPressed()?,
  4. ArcaneInteraction? action,
  5. ColorVariant color = ColorVariant.primary,
  6. ComponentSize size = ComponentSize.md,
  7. bool disabled = false,
  8. FABPosition position = FABPosition.bottomRight,
  9. String? tooltip,
  10. String? id,
  11. Map<String, String>? attributes,
})

Implementation

const FABProps({
  required this.icon,
  this.label,
  this.onPressed,
  this.action,
  this.color = ColorVariant.primary,
  this.size = ComponentSize.md,
  this.disabled = false,
  this.position = FABPosition.bottomRight,
  this.tooltip,
  this.id,
  this.attributes,
});