toJson method

Map<String, dynamic> toJson()

Converts the Ayah to JSON

Implementation

Map<String, dynamic> toJson() {
  return {
    'id': id,
    'text': text,
    'sajdah': sajdah,
    'juz': juz,
    'hizb': hizb,
  };
}