PropertyUpdate

data class PropertyUpdate<T>(val handle: ViewModelInstanceHandle, val propertyPath: String, val value: T)

Contains the data associated with a property update event.

Parameters

handle

The handle of the ViewModelInstance that the property belongs to.

propertyPath

The path to the property that was updated.

value

The new value of the property.

Constructors

Link copied to clipboard
constructor(handle: ViewModelInstanceHandle, propertyPath: String, value: T)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val value: T