addFromCommandModel method
Implementation
ShellModel addFromCommandModel(final CommandModel command) {
final ShellModel model = ShellModel(
title: command.title,
command: command.command,
path: command.path,
live: !command.external,
external: command.external);
items.add(model);
return model;
}