put<T> method
- T dependency
Puts the given dependency
in this scope.
Implementation
T put<T>(T dependency) {
_cleanup.add(() => Get.delete<T>());
return Get.put<T>(dependency);
}
Puts the given dependency
in this scope.
T put<T>(T dependency) {
_cleanup.add(() => Get.delete<T>());
return Get.put<T>(dependency);
}