TwoColumnDetailComponent constructor

const TwoColumnDetailComponent({
  1. required String left,
  2. required String right,
  3. String fillChar = '.',
  4. int indent = 2,
  5. RenderConfig renderConfig = const RenderConfig(),
})

Implementation

const TwoColumnDetailComponent({
  required this.left,
  required this.right,
  this.fillChar = '.',
  this.indent = 2,
  this.renderConfig = const RenderConfig(),
});