I’m getting the following error `'suspend' modifie...
# multiplatform
j
I’m getting the following error
'suspend' modifier is not allowed on a single abstract member
when declaring this code with kotlin 1.6.20
Copy code
internal fun interface LookForSseEvent {
    suspend operator fun invoke()
}
The same code in another project running with 1.6.10 doesn’t show any error. How can I fix that?