TextGlyph constructor

const TextGlyph({
  1. required String text,
  2. Color? textColor,
})

Constructs a glyph with the specified text and textColor.

Implementation

const TextGlyph({required this.text, this.textColor}) : super._();