Genre constructor

Genre({
  1. required int id,
  2. required String name,
  3. required String slug,
  4. required int gamesCount,
  5. required String imageBackground,
})

Constructor of Genre

Implementation

Genre({
  required this.id,
  required this.name,
  required this.slug,
  required this.gamesCount,
  required this.imageBackground,
});