TableIconButton constructor

const TableIconButton({
  1. required VoidCallback onPressed,
  2. required bool enabled,
  3. required IconData iconData,
  4. String? tooltip,
  5. int? sizeExtraSmall,
  6. int? sizeSmall,
  7. int? sizeMedium,
  8. int? sizeLarge,
  9. int? sizeExtraLarge,
  10. double? minHeight,
  11. Key? key,
})

Implementation

const TableIconButton({
  required this.onPressed,
  required this.enabled,
  required this.iconData,
  this.tooltip,
  super.sizeExtraSmall,
  super.sizeSmall,
  super.sizeMedium,
  super.sizeLarge,
  super.sizeExtraLarge,
  super.minHeight,
  super.key,
});