Collection constructor

Collection({
  1. required String? id,
  2. required String? title,
  3. required String? description,
  4. required bool? private,
  5. required int? mediaCount,
  6. required int? photosCount,
  7. required int? videosCount,
})

Implementation

Collection(
    {required this.id,
    required this.title,
    required this.description,
    required this.private,
    required this.mediaCount,
    required this.photosCount,
    required this.videosCount});