CsvDataList constructor

const CsvDataList({
  1. Key? key,
  2. required String dataFilePath,
  3. required String title,
  4. required String description,
  5. required String entryRedirectText,
  6. int sortColumnIndex = 0,
  7. bool sortOnLoaded = false,
  8. bool isAscending = false,
  9. AssetBundle? assetBundle,
})

Implementation

const CsvDataList({
  super.key,
  required this.dataFilePath,
  required this.title,
  required this.description,
  required this.entryRedirectText,
  this.sortColumnIndex = 0,
  this.sortOnLoaded = false,
  this.isAscending = false,
  this.assetBundle,
});