allWhitespace constant

String const allWhitespace

a string containing all Unicode characters that are considered whitespace.

taken from https://en.wikipedia.org/wiki/Whitespace_character

Implementation

static const allWhitespace =
    string.visibleWhitespace + string.invisibleWhitespace;