GamesList constructor
const
GamesList({ - Key? key,
- required String dataFilePath,
- required String title,
- required String entryRedirectText,
- required String description,
- required BlogDependentAppAttributes blogDependentAppAttributes,
- int sortColumnIndex = 2,
- bool sortOnLoaded = true,
- 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});