KeyValueTable constructor

const KeyValueTable({
  1. required List<KeyValueRow> rows,
  2. double? keyWidth,
  3. bool showDividers = true,
  4. Key? key,
})

Implementation

const KeyValueTable({
  required this.rows,
  this.keyWidth,
  this.showDividers = true,
  super.key,
});