Verse.fromJson constructor
Implementation
Verse.fromJson(Map<String, dynamic> json) : super.fromJson(json) {
id = json['id'];
text = json['text'];
uthmanicText = json['uthmanic_text'];
lineStart = json['line_start'];
lineEnd = json['line_end'];
image = json['image'];
narrationId = json['narration_id'];
chapterId = json['chapter_id'];
bookId = json['book_id'];
partId = json['part_id'];
pageId = json['page_id'];
}