SoftwareApp constructor

const SoftwareApp({
  1. required SoftwareAppRef ref,
  2. required String name,
  3. required String description,
  4. required String? summary,
  5. required String? iconUrl,
  6. required List<String> imageUrls,
  7. required List<String> platforms,
  8. required Nip01Event event,
})

Implementation

const SoftwareApp({
  required this.ref,
  required this.name,
  required this.description,
  required this.summary,
  required this.iconUrl,
  required this.imageUrls,
  required this.platforms,
  required this.event,
});