isFlutterProject method
Checks if the project is a Flutter project
Implementation
bool isFlutterProject() {
if (_pubspecContent == null) {
throw StateError('Pubspec not loaded. Call load() first.');
}
final dependencies = getDependencies();
return dependencies?.containsKey('flutter') == true;
}