getUnsafe method

  1. @override
  2. @protected
dynamic getUnsafe(
  1. Type type
)
override

Implementation

@override
@protected
dynamic getUnsafe(Type type) {
  if (!_provided.containsKey(type)) throw ProvidedValueNotFoundException(type: type, context: this);
  return _provided[type];
}