downWithModifiers

fun downWithModifiers(    keys: Set<Key>,     ctrl: Boolean? = null,     shift: Boolean? = null,     alt: Boolean? = null,     meta: Boolean? = null,     callback: suspend (key: KeyEvent) -> Unit): Closeable
fun downWithModifiers(    key: Key,     ctrl: Boolean? = null,     shift: Boolean? = null,     alt: Boolean? = null,     meta: Boolean? = null,     callback: suspend (key: KeyEvent) -> Unit): Closeable
fun downWithModifiers(    vararg keys: Key,     ctrl: Boolean? = null,     shift: Boolean? = null,     alt: Boolean? = null,     meta: Boolean? = null,     callback: suspend (key: KeyEvent) -> Unit): Closeable