strongGetOrThrow

@JvmName(name = "strongMapGetOrThrow")
fun <K, V> Provider<Map<K, V>>.strongGetOrThrow(key: K): Provider<V>
@JvmName(name = "strongMapGetOrThrow")
fun <K, V> Provider<Map<K, V>>.strongGetOrThrow(key: Provider<K>): Provider<V>

Creates and returns a new Provider that maps to the value associated with key or throws NoSuchElementException.