Files
cherrypick/lib/experimental/factory.dart

6 lines
114 B
Dart
Raw Normal View History

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