For write-only props I've been using for a while I...
# getting-started
e
For write-only props I've been using for a while I trick I saw somewhere (user will get an error at write time)
Copy code
@Deprecated(message = "Write only property", level = DeprecationLevel.HIDDEN) 
get() = error("")
is there any news or better way to do that in the meanwhile?
🚫 1