Surah constructor

Surah({
  1. int? surahNumber,
  2. String? surahName,
  3. int? startPage,
  4. int? endPage,
  5. List<Verse>? verses,
  6. int? versesCount,
})

the main constructor of Surah class.

Implementation

Surah({
  this.surahNumber,
  this.surahName,
  this.startPage,
  this.endPage,
  this.verses,
  this.versesCount,
});