emptySet

Returns an empty read-only set. The returned set is serializable (JVM).

fun <T> emptySet(): Set<T>(source)
val emptySet: Set<String> = emptySet()
println(emptySet.isEmpty()) // true

Source