AyahWithSurah constructor

const AyahWithSurah({
  1. required int id,
  2. required String text,
  3. required bool sajdah,
  4. required int juz,
  5. required int hizb,
  6. required Surah surah,
  7. String source = "Tanzil Project - https://tanzil.net",
})

Implementation

const AyahWithSurah({
  required super.id,
  required super.text,
  required super.sajdah,
  required super.juz,
  required super.hizb,
  required this.surah,
  this.source = "Tanzil Project - https://tanzil.net",
});