TSpeedDial constructor

const TSpeedDial({
  1. Key? key,
  2. required List<TSpeedDialChild> children,
  3. IconData icon = Icons.add,
  4. IconData activeIcon = Icons.close,
  5. Color? backgroundColor,
  6. Color? foregroundColor,
  7. String? tooltip,
  8. Color? overlayColor,
  9. double spacing = 12.0,
})

Implementation

const TSpeedDial({
  super.key,
  required this.children,
  this.icon = Icons.add,
  this.activeIcon = Icons.close,
  this.backgroundColor,
  this.foregroundColor,
  this.tooltip,
  this.overlayColor,
  this.spacing = 12.0,
});