buildObservableMap

inline fun <K, V> buildObservableMap(builderAction: MutableMap<K, V>.() -> Unit): Map<K, V>

Builds a new read-only ObservableMap by populating a MutableMap using the given builderAction and returning a read-only map with the same elements.

See also