CurseForgeCategory constructor

const CurseForgeCategory({
  1. required int id,
  2. required int gameId,
  3. required String name,
  4. required String? slug,
  5. required String? url,
  6. required String iconUrl,
  7. required String dateModified,
  8. required bool? isClass,
  9. required int? classId,
  10. required int? parentCategoryId,
})

Implementation

const CurseForgeCategory({
  required this.id,
  required this.gameId,
  required this.name,
  required this.slug,
  required this.url,
  required this.iconUrl,
  required this.dateModified,
  required this.isClass,
  required this.classId,
  required this.parentCategoryId,
});