TopAndBottomWidget constructor

TopAndBottomWidget({
  1. Key? key,
  2. required int pageIndex,
  3. required bool isRight,
  4. required Widget child,
  5. String? languageCode,
  6. String? juzName,
  7. String? sajdaName,
  8. Widget? topTitleChild,
  9. String? surahName,
  10. bool? isSurah = false,
  11. int? surahNumber,
})

Implementation

TopAndBottomWidget({
  super.key,
  required this.pageIndex,
  required this.isRight,
  required this.child,
  this.languageCode,
  this.juzName,
  this.sajdaName,
  this.topTitleChild,
  this.surahName,
  this.isSurah = false,
  this.surahNumber,
});