Returns a list of words in this string.
Example: 'hello world'.words -> ['hello', 'world'].
'hello world'.words
['hello', 'world']
List<String> get words => split(RegExp(r'\s+'));