ly.img.android.pesdk.backend.text_design.type / Words / joined

joined

fun joined(separator: String): <ERROR CLASS> fun joined(numberOfLines: Int = 1): List<String>

Joins a list of words into the given number of strings with a space between each word. E.g. ["this", "is", "a", "simple", "example"] with numberOfLines set to 2 returns ["this is a", "simple example"].

Parameters

numberOfLines - : The number of strings to return must be at minimum 1

Return
: The words joined to strings.