PanelHeader constructor

const PanelHeader({
  1. Key? key,
  2. required String title,
  3. String? tooltip,
  4. VoidCallback? onClose,
  5. Widget? icon,
})

Implementation

const PanelHeader({
  super.key,
  required this.title,
  this.tooltip,
  this.onClose,
  this.icon,
});