toJson method
Converts the HizbResult to JSON
Implementation
Map<String, dynamic> toJson() {
return {
'hizb': hizb,
'juz': juz,
'totalAyat': totalAyat,
'ayat': ayat.map((ayah) => ayah.toJson()).toList(),
'source': source,
};
}