resetLazySingletonT<T extends Object> method

Resolvable<Unit> resetLazySingletonT<T extends Object>(
  1. Type type, {
  2. Entity groupEntity = const DefaultEntity(),
})
inherited

Resets the singleton instance of a lazily loaded dependency.

Implementation

@pragma('vm:prefer-inline')
Resolvable<Unit> resetLazySingletonT<T extends Object>(
  Type type, {
  Entity groupEntity = const DefaultEntity(),
}) {
  return resetLazySingletonK<T>(TypeEntity(type), groupEntity: groupEntity);
}