WebIdeCommand constructor
WebIdeCommand({
- required TerminalView term,
- required Stream<
void> resizeEvents, - required OmnyShellService service,
- 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;