Glyph.fromCharCode constructor

const Glyph.fromCharCode(
  1. int char, [
  2. Color? fore,
  3. Color? back
])

Implementation

const Glyph.fromCharCode(this.char, [Color? fore, Color? back])
    : fore = fore != null ? fore : Color.white,
      back = back != null ? back : Color.black;