Listing constructor

const Listing({
  1. required String id,
  2. required String name,
  3. required String homepage,
  4. required String imageId,
  5. required int order,
  6. String? mobileLink,
  7. String? desktopLink,
  8. String? webappLink,
  9. String? linkMode,
  10. String? appStore,
  11. String? playStore,
  12. String? rdns,
  13. List<Injected>? injected,
})

Implementation

const Listing({
  required this.id,
  required this.name,
  required this.homepage,
  required this.imageId,
  required this.order,
  this.mobileLink,
  this.desktopLink,
  this.webappLink,
  this.linkMode,
  this.appStore,
  this.playStore,
  this.rdns,
  this.injected,
});