CLLabelValue constructor

const CLLabelValue({
  1. Key? key,
  2. required String label,
  3. String? value,
  4. Widget? valueWidget,
  5. String placeholder = '—',
  6. bool selectable = true,
})

Implementation

const CLLabelValue({
  super.key,
  required this.label,
  this.value,
  this.valueWidget,
  this.placeholder = '—',
  this.selectable = true,
});