get<T> abstract method

T get<T>({
  1. ParamTransform? transform,
  2. String? key,
})

Request an instance by Type
transform : Transform a param. This can be used for example to replace an instance with a mock in tests.
When key is provided it will search the instance that have the same key

Implementation

T get<T>({ParamTransform? transform, String? key});