Jonny Borges
Committed by GitHub

Merge pull request #587 from roipeker/master

update to Getx 3.10.1
@@ -241,9 +241,7 @@ class GetInstance { @@ -241,9 +241,7 @@ class GetInstance {
241 } 241 }
242 242
243 GetConfig.log('Lazy instance "$S" created'); 243 GetConfig.log('Lazy instance "$S" created');
244 -  
245 - var _value = put<S>(_factory[key].builder() as S);  
246 - 244 + final _value = put<S>(_factory[key].builder() as S, tag: tag);
247 _initDependencies<S>(name: tag); 245 _initDependencies<S>(name: tag);
248 246
249 if (GetConfig.smartManagement != SmartManagement.keepFactory && 247 if (GetConfig.smartManagement != SmartManagement.keepFactory &&