Returns List of words from the sentence.
List
final str = "hello there!"; str.=tokenise; // [hello, there!]
List<String> get tokenise => trim().split(" ").where((element) => element.isNotEmpty).toList();