jean
04/27/2022, 12:08 PM'suspend' modifier is not allowed on a single abstract member
when declaring this code with kotlin 1.6.20
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?