| 285 | get analyzerPath(): undefined | string { return resolvePaths(this.getConfig<null | string>("analyzerPath", null)); } |
| 286 | get cliAdditionalArgs(): string[] { return this.getConfig<string[]>("cliAdditionalArgs", []); } |
| 287 | get completeFunctionCalls(): boolean { return this.getConfig<boolean>("completeFunctionCalls", true); } |
| 288 | get customDartDapPath(): undefined | string { return resolvePaths(this.getConfig<null | string>("customDartDapPath", null)); } |
| 289 | get customDevTools(): undefined | CustomDevToolsConfig { return this.getConfig<null | CustomDevToolsConfig>("customDevTools", null); } |
| 290 | get customFlutterDapPath(): undefined | string { return resolvePaths(this.getConfig<null | string>("customFlutterDapPath", null)); } |