resolveInstance<T> method

T resolveInstance<T>()

Resolves an instance of type T from the container.

Throws if not found.

Implementation

T resolveInstance<T>() {
  return container.make<T>();
}