PlexDataTableWithPages constructor

PlexDataTableWithPages({
  1. Key? key,
  2. required List<PlexDataCell> columns,
  3. required List<List<PlexDataCell>> rows,
  4. int perPageRows = 10,
  5. dynamic onRefresh()?,
  6. bool enableSearch = true,
  7. bool enablePrint = true,
  8. bool enableCopy = true,
  9. Color? headerBackground,
  10. TextStyle? headerTextStyle,
  11. Color? alternateColor = const Color(0xFFA8A8A8),
  12. TableBorder? border,
  13. double? columnSpacing,
})

Implementation

PlexDataTableWithPages({
  super.key,
  required this.columns,
  required this.rows,
  this.perPageRows = 10,
  this.onRefresh,
  this.enableSearch = true,
  this.enablePrint = true,
  this.enableCopy = true,
  this.headerBackground,
  this.headerTextStyle,
  this.alternateColor = const Color(0xFFA8A8A8),
  this.border,
  this.columnSpacing,
});