KeyValue constructor

const KeyValue({
  1. required String key,
  2. required String value,
  3. String fillChar = '.',
  4. int? width,
  5. RenderConfig renderConfig = const RenderConfig(),
})

Implementation

const KeyValue({
  required this.key,
  required this.value,
  this.fillChar = '.',
  this.width,
  this.renderConfig = const RenderConfig(),
});