excerpta 1.0.7
excerpta: ^1.0.7 copied to clipboard
A smart dead code detector for Dart and Flutter, with built-in support for MobX, GetIt, and clean architecture idioms.
example/example.dart
// example/example.dart
/// A simple example demonstrating how to conceptually use Excerpta
/// in a Dart project structure.
void main() {
print('Run "dart run excerpta" or "excerpta" in your terminal to scan this project!');
}
/// An unused class example that Excerpta will catch during analysis.
class UnusedSampleClass {
void unusedMethod() {}
}