BooksList constructor

const BooksList({
  1. Key? key,
  2. required String dataFilePath,
  3. required String title,
  4. required String entryRedirectText,
  5. required String description,
  6. int sortColumnIndex = 3,
  7. bool sortOnLoaded = true,
  8. required AppAttributes appAttributes,
  9. required BlogDependentAppAttributes blogDependentAppAttributes,
})

Implementation

const BooksList({
  super.key,
  required super.dataFilePath,
  required super.title,
  required super.entryRedirectText,
  required super.description,
  // all entries with a critic should be displayed in the very beginning :)
  super.sortColumnIndex = 3,
  super.sortOnLoaded = true,
  // super.isAscending = true,
  required this.appAttributes,
  required this.blogDependentAppAttributes,
});