On the github page, I think you need to update the...
# tornadofx
m
On the github page, I think you need to update the customer model / JSON example because
int("id")
returns
Int?
, but for the assigment to the property you need
Int
, so (at least I had to write)
id = int("id") ?: 0