MCPcopy Create free account
hub / github.com/Dart-Code/Dart-Code / setGlobalDebugSdkLibraries

Method setGlobalDebugSdkLibraries

src/extension/config.ts:234–234  ·  view source on GitHub ↗
(value: boolean)

Source from the content-addressed store, hash-verified

232 public setFlutterSdkPath(value: string | undefined, target: ConfigurationTarget): Promise<void> { return this.setConfig("flutterSdkPath", value, target); }
233 public setGlobalDartSdkPath(value: string): Promise<void> { return this.setConfig("sdkPath", value, ConfigurationTarget.Global); }
234 public setGlobalDebugSdkLibraries(value: boolean): Promise<void> { return this.setConfig("debugSdkLibraries", value, ConfigurationTarget.Global); }
235 public setGlobalDebugExternalPackageLibraries(value: boolean): Promise<void> { return this.setConfig("debugExternalPackageLibraries", value, ConfigurationTarget.Global); }
236 public setGlobalFlutterSdkPath(value: string): Promise<void> { return this.setConfig("flutterSdkPath", value, ConfigurationTarget.Global); }
237 public setOffline(value: boolean | undefined): Promise<void> { return this.setConfig("offline", value, ConfigurationTarget.Global); }

Callers 1

applyNewDebugOptionMethod · 0.80

Calls 1

setConfigMethod · 0.95

Tested by

no test coverage detected