mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
6 lines
114 B
Dart
6 lines
114 B
Dart
|
|
import 'package:dart_di/experimental/scope.dart';
|
||
|
|
|
||
|
|
abstract class Factory<T> {
|
||
|
|
T createInstance(Scope scope);
|
||
|
|
}
|