CommandMenuDialog constructor
const
CommandMenuDialog({
- Key? key,
- required String title,
- required List<
PluginCommandConfig> commands, - required void onSelect(
- PluginCommandConfig command
- required VoidCallback onCancel,
Implementation
const CommandMenuDialog({
super.key,
required this.title,
required this.commands,
required this.onSelect,
required this.onCancel,
});