ReadOnlyBooleanPropertyWrapper
class ReadOnlyBooleanPropertyWrapper(wraps: BooleanProperty) : ReadOnlyPropertyWrapper<Boolean, Property<Boolean>> , ReadOnlyBooleanProperty
Never use this class directly. Use BooleanProperty.asReadOnly to obtain a read-only version of a mutable BooleanProperty.
Boilerplate which avoids having to use generic. Instead of ReadOnlyPropertyWrapper<Boolean, Property<Boolean>>
, use ReadOnlyBooleanPropertyWrapper
.