HadithCollection constructor

HadithCollection({
  1. required String name,
  2. required bool hasBooks,
  3. required bool hasChapters,
  4. required List<CollectionData> collection,
  5. required int totalHadith,
  6. required int totalAvailableHadith,
})

Implementation

HadithCollection({
  required this.name,
  required this.hasBooks,
  required this.hasChapters,
  required this.collection,
  required this.totalHadith,
  required this.totalAvailableHadith,
});