ActionOption constructor
const
ActionOption({
- required String name,
- required void action(),
- String? description,
- IconData icon = Icons.gear_six_fill,
- bool shouldShow(
- BuildContext context
Implementation
const ActionOption({
required super.name,
required this.action,
super.description,
super.icon,
super.shouldShow = _defShouldShow,
});