isAsciiEndOfLine property

bool get isAsciiEndOfLine

Whether this character code represents a newline or carriage return.

Implementation

bool get isAsciiEndOfLine => this == 0x0D || this == 0x0A;