FloatingActionButton constructor

const FloatingActionButton({
  1. required Component child,
  2. void onTap()?,
  3. double right = 24,
  4. double bottom = 24,
  5. double size = 56,
  6. String? label,
  7. bool accent = true,
  8. Key? key,
})

Implementation

const FloatingActionButton({
  required this.child,
  this.onTap,
  this.right = 24,
  this.bottom = 24,
  this.size = 56,
  this.label,
  this.accent = true,
  super.key,
});