NiceSpeedDial constructor

const NiceSpeedDial({
  1. Key? key,
  2. required List<NiceSpeedDialAction> actions,
  3. IconData icon = Icons.add,
  4. IconData activeIcon = Icons.close,
  5. String? tooltip,
})

Implementation

const NiceSpeedDial({
  super.key,
  required this.actions,
  this.icon = Icons.add,
  this.activeIcon = Icons.close,
  this.tooltip,
});