This is a simple Service Locator for Dart and Flutter projects with some additional goodies highly inspired by Splat . It can be used instead of InheritedWidget or Provider to access objects e.g. from your UI.
Read moreWhat is the dependency injection?
In software engineering, dependency injection is a technique in which an object receives other objects that it depends on, called dependencies . Typically, the receiving object is called a client and the passed-in (‘injected’) object is called a service.
Read more