Files
cherrypick/lib/factory.dart
2021-04-26 10:47:52 +03:00

6 lines
101 B
Dart

import 'package:dart_di/scope.dart';
abstract class Factory<T> {
T createInstance(Scope scope);
}