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

Method flutterDaemonLogFile

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

Source from the content-addressed store, hash-verified

125 get flutterCreatePromptForPlatforms(): boolean { return this.getConfig<boolean>("flutterCreatePromptForPlatforms", true); }
126 get flutterCustomEmulators(): Array<{ id: string, name: string, executable: string, args?: string[] }> { return this.getConfig<Array<{ id: string, name: string, executable: string, args?: string[] }>>("flutterCustomEmulators", []); }
127 get flutterDaemonLogFile(): undefined | string { return createFolderForFile(insertWorkspaceName(resolvePaths(this.getConfig<null | string>("flutterDaemonLogFile", null)))); }
128 get flutterGenerateLocalizationsOnSave(): "never" | "manual" | "manualIfDirty" | "all" | "allIfDirty" { return this.getConfig<"never" | "manual" | "manualIfDirty" | "all" | "allIfDirty">("flutterGenerateLocalizationsOnSave", "never"); }
129 get flutterGutterIcons(): boolean { return this.getConfig<boolean>("flutterGutterIcons", true); }
130 get flutterHotReloadOnSave(): "never" | "manual" | "manualIfDirty" | "all" | "allIfDirty" {

Callers

nothing calls this directly

Calls 4

getConfigMethod · 0.95
createFolderForFileFunction · 0.90
insertWorkspaceNameFunction · 0.90
resolvePathsFunction · 0.90

Tested by

no test coverage detected