auto_factory_annotation 2.1.1+1
auto_factory_annotation: ^2.1.1+1 copied to clipboard
Automatically generate code for creating objects and their dependecies through factory classes. This is the annotation part
example/main.dart
import 'lib/src/application.dart';
void main() async {
final app = await ApplicationFactory().create();
app.greet();
}