HorizontalTableComponent constructor

const HorizontalTableComponent({
  1. required Map<String, Object?> data,
  2. int padding = 1,
  3. String separator = '│',
  4. RenderConfig renderConfig = const RenderConfig(),
})

Implementation

const HorizontalTableComponent({
  required this.data,
  this.padding = 1,
  this.separator = '│',
  this.renderConfig = const RenderConfig(),
});