LabelValuePair constructor

LabelValuePair({
  1. required String label,
  2. required String value,
  3. bool isInline = true,
})

Implementation

LabelValuePair({
  required this.label,
  required this.value,
  this.isInline = true,
});