ExpandableFab constructor

const ExpandableFab({
  1. Color? closeBackgroundColor,
  2. double closeElevation = 4.0,
  3. bool initialOpen = false,
  4. required List<ActionButton> children,
  5. required double distance,
  6. Color? closeShadowColor,
  7. double? openElevation,
  8. Widget? closeIcon,
  9. Widget? openIcon,
  10. Key? key,
})

Constructs an ExpandableFab.

Requires distance and children. Other parameters are optional and have default values.

Implementation

const ExpandableFab({
  this.closeBackgroundColor,
  this.closeElevation = 4.0,
  this.initialOpen = false,
  required this.children,
  required this.distance,
  this.closeShadowColor,
  this.openElevation,
  this.closeIcon,
  this.openIcon,
  super.key,
});