Panel constructor
Panel({
- required String name,
- required String label,
- required IconData? icon,
- required dynamic create(
- VoidCallback onClose
- required String tooltip,
Implementation
Panel({
required this.name,
required this.label,
required this.icon,
required this.create,
required this.tooltip,
});