auto_factory 0.1.5
auto_factory: ^0.1.5 copied to clipboard
Automatically generate code for creating object and their dependecies throug factory classes
example/main.dart
import 'lib/src/application.dart';
void main() {
final app = ApplicationFactory().get();
app.greet();
}