Hi,
When using the the standard delegate properties stored in a map is there anyway to define format ?
The ideas is something like:
class User(val map: Map<String, Any?>) {
val name: String by map
val birtday: String by map "yyyy-MM-dd'T'HH:mm:ss"
}
The idea is to be able able to apply a format when retrieve for the map, for dates or currencies …
Thank you.