Split the String at (one or more) white-space characters.
List<String> splitAtWhitespace() => trim().split(RegExp(r'(\s+)'));