ZeroSpeedDial constructor

const ZeroSpeedDial({
  1. Key? key,
  2. Widget? activeChild,
  3. Widget? inactiveChild,
  4. List<ZeroSpeedDialItem> children = const [],
  5. ZeroSpeedDialStyle? style,
  6. ZeroTooltipVariant? tooltipVariant,
  7. Brightness? tooltipBrightness,
  8. ZeroSpeedDialDirection direction = ZeroSpeedDialDirection.vertical,
  9. Curve curve = Curves.easeOutCubic,
  10. Duration duration = const Duration(milliseconds: 400),
  11. Text? label,
})

Implementation

const ZeroSpeedDial({
  super.key,
  this.activeChild,
  this.inactiveChild,
  this.children = const [],
  this.style,
  this.tooltipVariant,
  this.tooltipBrightness,
  this.direction = ZeroSpeedDialDirection.vertical,
  this.curve = Curves.easeOutCubic,
  this.duration = const Duration(milliseconds: 400),
  this.label,
});