splitBySpace method

List<String> splitBySpace()

Implementation

List<String> splitBySpace() {
  return split(_spaceRegexp).where((e) => e.trim().isNotEmpty).toList();
}