CommandMenuDialog constructor

const CommandMenuDialog({
  1. Key? key,
  2. required String title,
  3. required List<PluginCommandConfig> commands,
  4. required void onSelect(
    1. PluginCommandConfig command
    ),
  5. required VoidCallback onCancel,
})

Implementation

const CommandMenuDialog({
  super.key,
  required this.title,
  required this.commands,
  required this.onSelect,
  required this.onCancel,
});