WebIdeCommand constructor

WebIdeCommand({
  1. required TerminalView term,
  2. required Stream<void> resizeEvents,
  3. required OmnyShellService service,
  4. required SettingsStore settings,
})

Creates the command. See registerIdeCommand for the wiring.

Implementation

WebIdeCommand({
  required TerminalView term,
  required Stream<void> resizeEvents,
  required OmnyShellService service,
  required SettingsStore settings,
}) : _term = term,
     _resizeEvents = resizeEvents,
     _service = service,
     _settings = settings;