RecitationVerses.fromJson constructor

RecitationVerses.fromJson(
  1. Map<String, dynamic> json
)

Implementation

RecitationVerses.fromJson(Map<String, dynamic> json) : super.fromJson(json) {
  id = json['id'];
  verseId = json['verse_id'];
  verseNumber = json['verse_number'];
  recitationId = json['recitation_id'];
  record = json['record'];
}