EditorialStatTile constructor

const EditorialStatTile({
  1. Key? key,
  2. required String label,
  3. required String n,
  4. required String sub,
  5. String? accent,
  6. String? glyph,
  7. double numeralSize = 48,
  8. double glyphSize = 28,
})

Implementation

const EditorialStatTile({
  super.key,
  required this.label,
  required this.n,
  required this.sub,
  this.accent,
  this.glyph,
  this.numeralSize = 48,
  this.glyphSize = 28,
});