Ayah constructor

const Ayah({
  1. required int id,
  2. required String text,
  3. required bool sajdah,
  4. required int juz,
  5. required int hizb,
})

Implementation

const Ayah({
  required this.id,
  required this.text,
  required this.sajdah,
  required this.juz,
  required this.hizb,
});