CollectionInfo constructor

const CollectionInfo({
  1. required int type,
  2. required bool isSystem,
  3. required String id,
  4. required String globallyUniqueId,
  5. required String name,
  6. required int status,
  7. required int? count,
})

Implementation

const CollectionInfo({
  required this.type,
  required this.isSystem,
  required this.id,
  required this.globallyUniqueId,
  required this.name,
  required this.status,
  required this.count,
});