TKeyValueSection constructor

const TKeyValueSection({
  1. Key? key,
  2. required List<TKeyValue> values,
  3. TKeyValueTheme? theme,
  4. bool? forceKeyValue,
  5. bool? valueAfterKey,
})

Implementation

const TKeyValueSection({
  super.key,
  required this.values,
  this.theme,
  this.forceKeyValue,
  this.valueAfterKey,
});