completionInstallation property

  1. @visibleForTesting
CompletionInstallation completionInstallation
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;
}