(flutterSdkPath: string, projectFolder: string)
| 14 | } |
| 15 | |
| 16 | export function writeFlutterSdkSettingIntoProject(flutterSdkPath: string, projectFolder: string): void { |
| 17 | writeSettingIntoProject(projectFolder, { "dart.flutterSdkPath": flutterSdkPath }); |
| 18 | } |
| 19 | |
| 20 | function writeSettingIntoProject(projectFolder: string, settings: any): void { |
| 21 | const vsCodeFolder = path.join(projectFolder, ".vscode"); |
no test coverage detected