getBooleanProperty

suspend fun getBooleanProperty(viewModelInstanceHandle: ViewModelInstanceHandle, propertyPath: String): Boolean

Get a boolean property's value on the view model instance.

Return

The value of the property.

Parameters

viewModelInstanceHandle

The handle of the view model instance that the property belongs to.

propertyPath

The path to the property that should be retrieved. Slash delimited.

Throws

If the view model instance handle is invalid, or the named property does not exist or is of the wrong type.

If the CommandQueue has been released.

If the coroutine is cancelled before the operation completes.