KeyValueTableProps constructor

const KeyValueTableProps({
  1. required List<KeyValueRowData> rows,
  2. double? keyWidth,
  3. bool showDividers = true,
})

Implementation

const KeyValueTableProps({
  required this.rows,
  this.keyWidth,
  this.showDividers = true,
});