ColumnsComponent constructor

const ColumnsComponent({
  1. required List<String> items,
  2. int? columnCount,
  3. int gutter = 2,
  4. int indent = 2,
  5. RenderConfig renderConfig = const RenderConfig(),
})

Implementation

const ColumnsComponent({
  required this.items,
  this.columnCount,
  this.gutter = 2,
  this.indent = 2,
  this.renderConfig = const RenderConfig(),
});