SimpleFloatProperty
open class SimpleFloatProperty(initialValue: Float, bean: Any? = null, beanName: String? = null) : SimpleProperty<Float> , FloatProperty
Boilerplate which avoids having to use generics. Instead of SimpleProperty<Float>
, we can use SimpleFloatProperty
.