NiceReadingProgress constructor

const NiceReadingProgress({
  1. Key? key,
  2. required int currentPage,
  3. required int totalPages,
  4. double? readingProgress,
  5. bool showPercentage = true,
  6. bool showPageInfo = true,
  7. Color? progressColor,
})

Implementation

const NiceReadingProgress({
  super.key,
  required this.currentPage,
  required this.totalPages,
  this.readingProgress,
  this.showPercentage = true,
  this.showPageInfo = true,
  this.progressColor,
});