RawShelf constructor

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

Implementation

const RawShelf({
  required this.books,
  required this.fileContent,
  required this.folderPath,
  required this.filePath,
});