Ayat constructor

Ayat({
  1. required int number,
  2. required String audio,
  3. required List<String> audioSecondary,
  4. required String text,
  5. required String translateBn,
  6. required int numberInSurah,
  7. required int juz,
  8. required int manzil,
  9. required int page,
  10. required int ruku,
  11. required int hizbQuarter,
  12. required dynamic sajdah,
  13. required String pronunciationBn,
  14. required String wordsArabic,
  15. required String wordsBangla,
})

Implementation

Ayat({
  required this.number,
  required this.audio,
  required this.audioSecondary,
  required this.text,
  required this.translateBn,
  required this.numberInSurah,
  required this.juz,
  required this.manzil,
  required this.page,
  required this.ruku,
  required this.hizbQuarter,
  required this.sajdah,
  required this.pronunciationBn,
  required this.wordsArabic,
  required this.wordsBangla,
});