Platform constructor

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

Constructor of Platform

Implementation

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