Store constructor

Store({
  1. required int id,
  2. required String name,
  3. required String domain,
  4. required String slug,
  5. required int gamesCount,
  6. required String imageBackground,
  7. required String description,
})

Constructor of Store

Implementation

Store({
  required this.id,
  required this.name,
  required this.domain,
  required this.slug,
  required this.gamesCount,
  required this.imageBackground,
  required this.description,
});