completionInstallation property
- @visibleForTesting
inherited
The CompletionInstallation
used to install completion files.
Implementation
@visibleForTesting
CompletionInstallation get completionInstallation {
var completionInstallation = _completionInstallation;
completionInstallation ??= CompletionInstallation.fromSystemShell(
systemShell: systemShell,
logger: completionInstallationLogger,
);
return _completionInstallation = completionInstallation;
}