Is it possible to use the get() property within a @Composable function? I get an "unexpected token".
How do we use the set and get properties with compose?
val g:Int get()=88 // < works as expected outside @Composable
@Composable
fun Test() {
val g:Int get()=88 // < "unexpected token" error inside @Composable
}
