()
| 200 | get showTodos(): boolean | string[] { return this.getConfig<boolean | string[]>("showTodos", true); } |
| 201 | get testInvocationMode(): "name" | "line" { return this.getConfig<"name" | "line">("testInvocationMode", "name"); } |
| 202 | get toolingDaemonLogFile(): undefined | string { return createFolderForFile(insertWorkspaceName(resolvePaths(this.getConfig<null | string>("toolingDaemonLogFile", null)))); } |
| 203 | get toolingDaemonAdditionalArgs(): string[] { return this.getConfig<string[]>("toolingDaemonAdditionalArgs", []); } |
| 204 | get updateImportsOnRename(): boolean { return this.getConfig<boolean>("updateImportsOnRename", true); } |
| 205 | get useFlutterDev(): boolean { return this.getConfig<boolean>("useFlutterDev", false); } |
nothing calls this directly
no test coverage detected