(folder: string)
| 205 | } |
| 206 | |
| 207 | async function hasPubspecAsync(folder: string): Promise<boolean> { |
| 208 | return await existsAndIsFileAsync(path.join(folder, "pubspec.yaml")); |
| 209 | } |
| 210 | |
| 211 | async function hasCreateTriggerFileAsync(folder: string): Promise<boolean> { |
| 212 | return await existsAndIsFileAsync(path.join(folder, FLUTTER_CREATE_PROJECT_TRIGGER_FILE)); |
no test coverage detected