SExpandableItem constructor

SExpandableItem({
  1. required IconData icon,
  2. double? size,
  3. void onTap(
    1. Offset position
    )?,
  4. String? tooltip,
  5. bool disabled = false,
})

Implementation

SExpandableItem({
  required this.icon,
  this.size,
  this.onTap,
  this.tooltip,
  this.disabled = false,
});