mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-04 10:18:20 +00:00
8 lines
176 B
Dart
8 lines
176 B
Dart
class FactoryEntry {
|
|
final Type type;
|
|
final Function instanceCreator;
|
|
final Function arrayCreator;
|
|
|
|
FactoryEntry(this.type, this.instanceCreator, this.arrayCreator);
|
|
}
|