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,
  8. required AppPlatform platform,
  9. required bool isFree,
})

Creates an immutable 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,
  required this.platform,
  required this.isFree,
});