TranslationModel constructor

TranslationModel({
  1. required String surahAyah,
  2. required String text,
  3. Map<String, String> footnotes = const {},
})

Implementation

TranslationModel({
  required this.surahAyah,
  required this.text,
  this.footnotes = const {},
});