Is there a way to create a suspending variable in ...
# coroutines
a
Is there a way to create a suspending variable in coroutine like? Most probably not but is there KEEP around for this discussion?
Copy code
suspending var a: Int
    get = TODO()
    set() = TODO()
d
No. You have to write wrapper methods instead.