SpeedDial constructor

const SpeedDial({
  1. Key? key,
  2. Widget? childOnOpen,
  3. List<SpeedDialChild>? speedDialChildren,
  4. TextStyle? labelsStyle,
  5. AnimationController? controller,
  6. Color? closedForegroundColor,
  7. Color? openForegroundColor,
  8. Color? closedBackgroundColor,
  9. Color? openBackgroundColor,
  10. Widget? childOnClose,
  11. IconData? onCloseIcon,
  12. IconData? onOpenIcon,
})

Implementation

const SpeedDial({
  super.key,
  this.childOnOpen,
  this.speedDialChildren,
  this.labelsStyle,
  this.controller,
  this.closedForegroundColor,
  this.openForegroundColor,
  this.closedBackgroundColor,
  this.openBackgroundColor,
  this.childOnClose,
  this.onCloseIcon,
  this.onOpenIcon,
});