JotrockenmitlockenTable<T extends dynamic> constructor

const JotrockenmitlockenTable<T extends dynamic>({
  1. dynamic key,
  2. required List<String> dataCategories,
  3. required String title,
  4. required String description,
  5. required List<T> data,
  6. required List<double> spacing,
  7. required List dataCellContentStrategies,
  8. required String entryRedirectText,
  9. int sortColumnIndex = 0,
  10. bool sortOnLoaded = false,
  11. bool isAscending = false,
})

Implementation

const JotrockenmitlockenTable({
  super.key,
  required this.dataCategories,
  required this.title,
  required this.description,
  required this.data,
  required this.spacing,
  required this.dataCellContentStrategies,
  required this.entryRedirectText,
  this.sortColumnIndex = 0,
  this.sortOnLoaded = false,
  this.isAscending = false,
});