FlexTable constructor

const FlexTable({
  1. Key? key,
  2. required Widget child,
  3. Axis direction = Axis.horizontal,
  4. bool scrollable = false,
  5. List<FlexTableItemConfig?>? configs,
  6. double gap = 12,
  7. bool selectable = false,
  8. void onSelectChanged(
    1. List<int>?
    )?,
})

Implementation

const FlexTable({
  super.key,
  required super.child,
  this.direction = Axis.horizontal,
  this.scrollable = false,
  this.configs,
  this.gap = 12,
  this.selectable = false,
  this.onSelectChanged,
});