get<T> method

T get<T>({
  1. String? tag,
})

Lookup a service in the current scope

Implementation

T get<T>({String? tag}) {
  return current.get<T>(tag: tag);
}