findInSelfContainer<S> static method

S findInSelfContainer<S>({
  1. String? tag,
})

For long lifecycle object in application container.

Implementation

static S findInSelfContainer<S>({String? tag}) {
  return SelfContainer().findInSelfContainer<S>(tag: tag);
}