ascii top-level property Null safety
Whether the glyph getters return plain ASCII, as opposed to Unicode characters or sequences.
Defaults to false
.
Implementation
bool get ascii => glyphs == asciiGlyphs;
Implementation
set ascii(bool value) {
_glyphs = value ? asciiGlyphs : unicodeGlyphs;
}