Sorry for stupid question. Is possible define prop...
# announcements
n
Sorry for stupid question. Is possible define property with
non-null
getter, but setter
nullable
? Tried, but didn’t work
Copy code
var price: Money
        get() = getPriceFromText()
        set(value: Money?) {
            setText(Utils.formatCurrency(price))
        }