Is there a way to find usages of `invoke` from sus...
# android-studio
j
Is there a way to find usages of
invoke
from suspend function super-types?
Copy code
class MyClass : suspend (Boolean) -> String {
    override suspend fun invoke(param:Boolean) : String {
        return "someString"
    }
}
Control+Left Click
cannot find anything: