Shell constructor

Shell({
  1. ShellPrompt? prompt,
})

construct

Implementation

Shell({ShellPrompt? prompt}) {
  _input = ShellInput(onSubmit, prompt: prompt);
  _input.onAutocomplete = onAutocomplete;
}