StatDisplayProps constructor

const StatDisplayProps({
  1. required String value,
  2. required String label,
  3. StatDisplayLayout layout = StatDisplayLayout.vertical,
  4. String? valueColor,
  5. String? labelColor,
  6. String? valueFontSize,
  7. String? labelFontSize,
  8. String? textAlign,
})

Implementation

const StatDisplayProps({
  required this.value,
  required this.label,
  this.layout = StatDisplayLayout.vertical,
  this.valueColor,
  this.labelColor,
  this.valueFontSize,
  this.labelFontSize,
  this.textAlign,
});