Files
cherrypick/benchmark_cherrypick/lib/scenarios/app_module.dart

10 lines
215 B
Dart
Raw Normal View History

import 'package:cherrypick/cherrypick.dart';
import 'foo_service.dart';
class AppModule extends Module {
@override
void builder(Scope currentScope) {
bind<FooService>().toProvide(() => FooService());
}
}