FreedomTable constructor

FreedomTable({
  1. Key? key,
  2. required List<FreedomTableHeaderCell> headers,
  3. FreedomTableTheme? theme,
  4. FreedomTablePager? pager,
  5. void bodyCellOnTap(
    1. FreedomTableBodyCell childCell,
    2. double left,
    3. double top,
    4. double width,
    5. double height,
    6. double scrollLeft,
    7. double scrollTop,
    8. double totalScrollWidth,
    9. double totalScrollHeight,
    )?,
  6. void bodyCellOnSecondaryTap(
    1. FreedomTableBodyCell childCell,
    2. double left,
    3. double top,
    4. double width,
    5. double height,
    6. double scrollLeft,
    7. double scrollTop,
    8. double totalScrollWidth,
    9. double totalScrollHeight,
    )?,
  7. void bodyUpdateFinished()?,
  8. double? minCellWidthInFlexMode,
  9. List<List<FreedomTableBodyCell>> initBodyCells = const [],
})

Implementation

FreedomTable({
  super.key,
  required this.headers,
  this.theme,
  this.pager,
  this.bodyCellOnTap,
  this.bodyCellOnSecondaryTap,
  this.bodyUpdateFinished,
  this.minCellWidthInFlexMode,
  this.initBodyCells = const [],
});