extractCommands function
Extract all simple commands from a command string.
Implementation
List<SimpleCommand> extractCommands(String input) {
final cmdList = parseCommand(input);
return cmdList.allCommands;
}
Extract all simple commands from a command string.
List<SimpleCommand> extractCommands(String input) {
final cmdList = parseCommand(input);
return cmdList.allCommands;
}