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

Method flutterScreenshotPath

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

Source from the content-addressed store, hash-verified

141 }
142 get flutterRememberSelectedDevice(): boolean { return this.getConfig<boolean>("flutterRememberSelectedDevice", true); }
143 get flutterScreenshotPath(): undefined | string { return resolvePaths(this.getConfig<null | string>("flutterScreenshotPath", null)); }
144 get flutterSdkPath(): undefined | string { return resolvePaths(this.getConfig<null | string>("flutterSdkPath", null)); }
145 get flutterSdkPaths(): string[] { return this.getConfig<string[]>("flutterSdkPaths", []).map(resolvePaths); }
146 get flutterSelectDeviceWhenConnected(): boolean { return this.getConfig<boolean>("flutterSelectDeviceWhenConnected", true); }

Callers

nothing calls this directly

Calls 2

getConfigMethod · 0.95
resolvePathsFunction · 0.90

Tested by

no test coverage detected