SenzuChapter constructor

const SenzuChapter({
  1. required int startMs,
  2. required String title,
  3. bool showOnProgressBar = true,
  4. bool isSkippable = false,
  5. int? skipToMs,
})

Implementation

const SenzuChapter({
  required this.startMs,
  required this.title,
  this.showOnProgressBar = true,
  this.isSkippable = false,
  this.skipToMs,
});