EpubReader class

Constructors

EpubReader()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

openBook(List<int> bytes) Future<EpubBookRef>
Opens the book asynchronously without reading its content. Holds the handle to the EPUB file.
readBook(List<int> bytes) Future<EpubBook>
Opens the book asynchronously and reads all of its content into the memory. Does not hold the handle to the EPUB file.
readByteContentFile(EpubContentFileRef contentFileRef) Future<EpubByteContentFile>
readByteContentFiles(Map<String, EpubByteContentFileRef> byteContentFileRefs) Future<Map<String, EpubByteContentFile>>
readChapters(List<EpubChapterRef> chapterRefs) Future<List<EpubChapter>>
readContent(EpubContentRef contentRef) Future<EpubContent>
readTextContentFiles(Map<String, EpubTextContentFileRef> textContentFileRefs) Future<Map<String, EpubTextContentFile>>