ReadOnlyPropertyInitializedObservable
constructor(readOnlyProperty: ReadOnlyProperty<Any?, T>, observation: ObservationInitialized<T> = ObservationInitialized(
ObservableOptional.Value(
run {
val v by readOnlyProperty
v
},
),
))
Parameters
T
the type of value to expect.
readOnlyProperty
The ReadOnlyProperty to track.
observation
The ObservationInitialized to handle observation.