SpeedDialChild constructor

const SpeedDialChild({
  1. Widget? child,
  2. Color? foregroundColor,
  3. Color? backgroundColor,
  4. String? label,
  5. Function? onPressed,
  6. bool closeSpeedDialOnPressed = true,
})

Implementation

const SpeedDialChild({
  this.child,
  this.foregroundColor,
  this.backgroundColor,
  this.label,
  this.onPressed,
  this.closeSpeedDialOnPressed = true,
});