isInProject static method
Check if we're in a Dart/Flutter project
Implementation
static bool isInProject() {
return File('pubspec.yaml').existsSync();
}
Check if we're in a Dart/Flutter project
static bool isInProject() {
return File('pubspec.yaml').existsSync();
}