NiceKeyValueList constructor

const NiceKeyValueList({
  1. Key? key,
  2. required List<NiceKeyValueItem> items,
  3. EdgeInsets? padding,
  4. double spacing = 12,
  5. TextStyle? keyStyle,
  6. TextStyle? valueStyle,
  7. bool dense = false,
})

Implementation

const NiceKeyValueList({
  super.key,
  required this.items,
  this.padding,
  this.spacing = 12,
  this.keyStyle,
  this.valueStyle,
  this.dense = false,
});