ascii top-level property

bool ascii

Whether the glyph getters return plain ASCII, as opposed to Unicode characters or sequences.

Defaults to false.

Implementation

bool get ascii => glyphs == asciiGlyphs;
void ascii=(bool value)

Implementation

set ascii(bool value) {
  _glyphs = value ? asciiGlyphs : unicodeGlyphs;
}