bind<S, T> method

S bind<S, T>([
  1. Qualifier? qualifier
])
override

Get instance of primary type T and secondary type S (not for scoped instances)

@return instance of type S

Implementation

S bind<S, T>([Qualifier? qualifier]) {
  return bindWithType(T, S, emptyParameter());
}