GamesList constructor

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

Implementation

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