splitAtWhitespace method

List<String> splitAtWhitespace()

Split the String at (one or more) white-space characters.

Implementation

List<String> splitAtWhitespace() => trim().split(RegExp(r'(\s+)'));