tokenise property

List<String> get tokenise

Returns List of words from the sentence.

final str = "hello there!";
str.=tokenise;  // [hello, there!]

Implementation

List<String> get tokenise =>
    trim().split(" ").where((element) => element.isNotEmpty).toList();