SpeedDialChild constructor

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

Implementation

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