RawBook constructor

const RawBook({
  1. required List<RawPage> pages,
  2. required String fileContent,
  3. required String folderPath,
  4. required String filePath,
})

Implementation

const RawBook({
  required this.pages,
  required this.fileContent,
  required this.folderPath,
  required this.filePath,
});