Files
cherrypick/lib/factory.dart
2021-04-26 09:44:04 +03:00

6 lines
101 B
Dart

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