get

@JvmName(name = "getAttribute")
operator fun <T : Attribute> Flow<List<T>>.get(uuidString: String): Flow<T>

Provides access to an Attribute by given string uuid Flow throws NoSuchElementException if the attribute cannot be found.

Return

the Flow of Attribute of T with the given UUID. Flow throws NoSuchElementException if the attribute cannot be found.

Parameters

uuidString

string attribute uuid representation

Throws