Fab constructor

const Fab({
  1. required Widget child,
  2. Widget? leading,
  3. void onPressed()?,
  4. String? href,
  5. Key? key,
})

Implementation

const Fab({
  required this.child,
  this.leading,
  this.onPressed,
  this.href,
  super.key,
});