isAsciiSpace property

bool get isAsciiSpace

Whether this character code represents a space or tab character.

Implementation

bool get isAsciiSpace => this == 0x20 || this == 0x09;