SurahStatistics constructor

const SurahStatistics({
  1. required int totalSurahs,
  2. required int totalAyat,
  3. required int meccanSurahs,
  4. required int medinanSurahs,
  5. required double averageAyatPerSurah,
  6. required Surah longestSurah,
  7. required Surah shortestSurah,
  8. required AyatCounts ayatCounts,
  9. required RevelationAnalysis revelationAnalysis,
  10. String source = "Tanzil Project - https://tanzil.net",
})

Implementation

const SurahStatistics({
  required this.totalSurahs,
  required this.totalAyat,
  required this.meccanSurahs,
  required this.medinanSurahs,
  required this.averageAyatPerSurah,
  required this.longestSurah,
  required this.shortestSurah,
  required this.ayatCounts,
  required this.revelationAnalysis,
  this.source = "Tanzil Project - https://tanzil.net",
});