ThemedLabelValue constructor

const ThemedLabelValue({
  1. Key? key,
  2. bool showLabel = true,
  3. String labelText = "",
  4. ThemeGroupType labelType = ThemeGroupType.MOM,
  5. Emphasis labelEmphasis = Emphasis.HIGH,
  6. TextAlign labelTextAlign = TextAlign.start,
  7. String text = "",
  8. ThemeGroupType textType = ThemeGroupType.MOM,
  9. Emphasis textEmphasis = Emphasis.HIGH,
  10. TextAlign textAlign = TextAlign.start,
})

Implementation

const ThemedLabelValue({
  super.key,
  this.showLabel = true,
  this.labelText = "",
  this.labelType = ThemeGroupType.MOM,
  this.labelEmphasis = Emphasis.HIGH,
  this.labelTextAlign = TextAlign.start,
  this.text = "",
  this.textType = ThemeGroupType.MOM,
  this.textEmphasis = Emphasis.HIGH,
  this.textAlign = TextAlign.start
});