override fun matches()

in src/main/kotlin/org/jetbrains/plugins/template/chatApp/model/ChatMessage.kt [36:40]


    override fun matches(query: String): Boolean {
        if (query.isBlank()) return false

        return content.contains(query, ignoreCase = true)
    }