Fab constructor

const Fab({
  1. required ArcaneGlyph icon,
  2. String? label,
  3. void onPressed()?,
  4. ArcaneInteraction? action,
  5. String? href,
  6. Key? key,
})

Implementation

const Fab({
  required this.icon,
  this.label,
  this.onPressed,
  this.action,
  this.href,
  super.key,
});