ReaderBloc constructor

ReaderBloc({
  1. required String sectionFileName,
  2. required String highlightFileName,
  3. required String bookFolder,
})

Implementation

ReaderBloc(
    {required this.sectionFileName,
    required this.highlightFileName,
    required this.bookFolder})
    : super(ReaderInitial()) {
  loadSectionText();
}