Find pubspec.yaml for Flutter projects
static File? findPubspecYaml(String projectPath) { final file = File(path.join(projectPath, 'pubspec.yaml')); return file.existsSync() ? file : null; }