toJson method

Map<String, dynamic> toJson()

Converts QuranMetadata to JSON

Implementation

Map<String, dynamic> toJson() {
  return {
    'totalSurahs': totalSurahs,
    'totalAyat': totalAyat,
    'meccanSurahs': meccanSurahs,
    'medinanSurahs': medinanSurahs,
    'dataVersion': dataVersion,
    'lastUpdated': lastUpdated.toIso8601String(),
  };
}