CommandView constructor

const CommandView({
  1. Key? key,
  2. required Widget child,
  3. required List<CommandDescriptor> commands,
  4. 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,
});