put<T> method

T put<T>(
  1. 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);
}