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 ?? Color.white,
      back = back ?? Color.black;