App constructor

const App({
  1. required String id,
  2. required String name,
  3. required String category,
  4. required String developerName,
  5. required double rating,
  6. required String imageUrl,
  7. required String url,
})

Constructs a new App instance.

Implementation

const App({
  required this.id,
  required this.name,
  required this.category,
  required this.developerName,
  required this.rating,
  required this.imageUrl,
  required this.url,
});