ascii top-level property

bool get ascii

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

Defaults to false.

Implementation

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

Implementation

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