find<T> method

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

Find a dependency from the test container

Implementation

T? find<T>({String? tag}) {
  return _scope.find<T>(tag: tag);
}