CommandView constructor
const
CommandView({
- Key? key,
- required Widget child,
- required List<
CommandDescriptor> commands, - List<
CommandDescriptor> toolbarCommands = noCommands,
Create a new CommandView
commands
list of commands
Implementation
const CommandView({
super.key,
required this.child,
required this.commands,
this.toolbarCommands = noCommands,
});