isInProject static method

bool isInProject()

Check if we're in a Dart/Flutter project

Implementation

static bool isInProject() {
  return File('pubspec.yaml').existsSync();
}