Ayah constructor

const Ayah({
  1. required int id,
  2. required int surahNumber,
  3. required String text,
  4. required int page,
  5. required int juz,
  6. String? tafsir,
  7. String? audioUrl,
  8. bool isSajda = false,
})

Implementation

const Ayah({
  required this.id,
  required this.surahNumber,
  required this.text,
  required this.page,
  required this.juz,
  this.tafsir,
  this.audioUrl,
  this.isSajda = false,
});