unicodeWords property

List<String> unicodeWords

Returns list of unicode words from the string

'hey kàwàl'.unicodeWords; // [kàwàl]

Implementation

List<String> get unicodeWords {
  return _unicodeAsciiWords();
}