SpeedDial constructor

const SpeedDial({
  1. Key? key,
  2. Widget? child,
  3. Widget? expandedChild,
  4. Color? backgroundColor,
  5. Color? expandedBackgroundColor,
  6. Color? foregroundColor,
  7. Color? expandedForegroundColor,
  8. Color? overlayColor,
  9. List<SpeedDialChild> children = const [],
  10. bool invokeAfterClosing = false,
  11. Duration animationDuration = const Duration(milliseconds: 300),
})

Implementation

const SpeedDial({
  Key? key,
  this.child,
  this.expandedChild,
  this.backgroundColor,
  this.expandedBackgroundColor,
  this.foregroundColor,
  this.expandedForegroundColor,
  this.overlayColor,
  this.children = const [],
  this.invokeAfterClosing = false,
  this.animationDuration = const Duration(milliseconds: 300),
}) : super(key: key);