from Property Not Null
infix fun <TO_TYPE, FROM_TYPE> KProperty<TO_TYPE>.fromPropertyNotNull(source: KProperty<FROM_TYPE?>): TransformableValue<FROM_TYPE, TO_TYPE>
Explicitly construct a mapping to TO from nullable property source source and changing the nullable type of source to its non-nullable type.
This is equivalent to to::x fromProperty from::y transform { it!! }.