ToolbarItem constructor
const
ToolbarItem({
- Key? key,
- required dynamic icon,
- VoidCallback? onPressedButton,
- String? tooltip,
- bool isExpandable = false,
- List? items,
Implementation
const ToolbarItem({
Key? key,
required this.icon,
this.onPressedButton,
this.tooltip,
this.isExpandable = false,
this.items,
}) : super(key: key);