Write a function called containsLetters that takes two CharSequence parameters: a source and a letters sequence. The function should return true if the source sequence contains all the characters in the letters sequence, and false otherwise.
Your function should be case-sensitive and only consider the individual characters in the letters sequence, not any subsequences of it.