get static method
Implementation
static ObjectFactory get(String key) {
if (_singleton.factoryMap.containsKey(key)) {
return _singleton.factoryMap[key]!;
} else {
throw Exception('FactoryNucleoid: factory "$key" does\'t init.');
}
}
static ObjectFactory get(String key) {
if (_singleton.factoryMap.containsKey(key)) {
return _singleton.factoryMap[key]!;
} else {
throw Exception('FactoryNucleoid: factory "$key" does\'t init.');
}
}