find<InstanceType> method

InstanceType? find<InstanceType>(
  1. String scope
)

Tries to find object in scope

scope - string scope value

Implementation

InstanceType? find<InstanceType>(String scope) {
  return container.find<InstanceType>(scope);
}