Verse constructor

Verse({
  1. int? verseNumber,
  2. String? verseKey,
  3. String? textImlaeiSimple,
  4. int? pageNumber,
  5. int? juzNumber,
  6. List<String>? words,
  7. String? font,
})

the main constructor of Verse class.

Implementation

Verse(
    {this.verseNumber,
    this.verseKey,
    this.textImlaeiSimple,
    this.pageNumber,
    this.juzNumber,
    this.words,
    this.font});