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