LabelValue constructor

LabelValue({
  1. String? label,
  2. LocalizedString? localizedLabel,
  3. LocalizedString? localizedValue,
  4. String? value,
})

Implementation

LabelValue({
  this.label,
  this.localizedLabel,
  this.localizedValue,
  this.value,
});