getOrNull

@JvmName(name = "getAttributeOrNull")
fun <T : Attribute> Flow<List<T>>.getOrNull(uuidString: String): Flow<T?>

Provides access to an Attribute by given string uuid, or null if it cannot be found

Return

the Flow of Attribute of T with the given UUID or null if the attribute cannot be found.

Parameters

uuidString

string attribute uuid representation

Throws