endsWith
Returns true if this string ends with the specified suffix.
fun CharSequence.endsWith(
char: Char,
ignoreCase: Boolean = false
): BooleanReturns true if this char sequence ends with the specified character.
fun CharSequence.endsWith(
suffix: CharSequence,
ignoreCase: Boolean = false
): BooleanReturns true if this char sequence ends with the specified suffix.