TickerCharacterWidget constructor

const TickerCharacterWidget({
  1. required String glyph,
  2. required double fontSize,
  3. Key? key,
})

Constructs a character widget for the ticker Requires the "glyph" a single character And the font size

Implementation

const TickerCharacterWidget({
  required this.glyph,
  required this.fontSize,
  Key? key,
}) : super(key: key);