BookmarksAyahs constructor

BookmarksAyahs({
  1. int? id,
  2. required int ayahUQNumber,
  3. required int surahNumber,
  4. String? surahName,
  5. int? pageNumber,
  6. int? ayahNumber,
  7. String? lastRead,
})

Creates a new instance of BookmarksAyahs.

The id, ayahUQNumber, surahNumber, surahName, pageNumber, ayahNumber, and lastRead must be provided.

The id is the unique identifier for the bookmark in the Quran.

The ayahUQNumber is the unique identifier for the Ayah in the Quran.

The surahNumber is the number of the Surah in the Quran.

The surahName is the name of the Surah in the Quran.

The pageNumber is the page number in the Quran that the bookmarked Ayah is located.

The ayahNumber is the number of the Ayah in the Surah.

The lastRead is the last read timestamp for the bookmarked Ayah.

Implementation

BookmarksAyahs({
  this.id,
  required this.ayahUQNumber,
  required this.surahNumber,
  this.surahName,
  this.pageNumber,
  this.ayahNumber,
  this.lastRead,
  // this.bookMarkColorCode,
});