inject<T> static method
Inject a mock dependency into the Fluxy DI system for testing.
Implementation
static void inject<T>(T instance, {String? tag}) {
FluxyDI.put<T>(instance, tag: tag);
}
Inject a mock dependency into the Fluxy DI system for testing.
static void inject<T>(T instance, {String? tag}) {
FluxyDI.put<T>(instance, tag: tag);
}