filterSettingsEnv function
Compose the strip filters applied to every settings-sourced env object.
Implementation
Map<String, String> filterSettingsEnv(Map<String, String>? env) {
return _withoutCcdSpawnEnvKeys(
_withoutHostManagedProviderVars(_withoutSSHTunnelVars(env)),
);
}