isAsciiWhitespace property

bool get isAsciiWhitespace

Whether this character code represents a space, tab, newline, or carriage return.

Implementation

bool get isAsciiWhitespace => isAsciiSpace || isAsciiEndOfLine;