CollectibleCollection constructor

CollectibleCollection({
  1. required String type,
  2. required String collectionId,
  3. required String name,
  4. required String description,
  5. required String iconUrl,
  6. required DateTime createdAt,
})

Implementation

CollectibleCollection({
  required this.type,
  required this.collectionId,
  required this.name,
  required this.description,
  required this.iconUrl,
  required this.createdAt,
});