isAsciiEndOfLine property
bool
get
isAsciiEndOfLine
Whether this character code represents a newline or carriage return.
Implementation
bool get isAsciiEndOfLine => this == 0x0D || this == 0x0A;
Whether this character code represents a newline or carriage return.
bool get isAsciiEndOfLine => this == 0x0D || this == 0x0A;