Files class

Represents the files contained in an EPUB document.

This class provides access to the images, CSS files, HTML files, font files, and other files in the document.

Constructors

Files({required List<BinaryFile> images, required List<TextFile> css, required List<TextFile> html, required List<BinaryFile> fonts, required List<BinaryFile> others})
Creates a new Files with the given lists of files.

Properties

css List<TextFile>
The list of CSS files in the EPUB document.
final
fonts List<BinaryFile>
The list of font files in the EPUB document.
final
hashCode int
The hash code for this object.
no setterinherited
html List<TextFile>
The list of HTML files in the EPUB document.
final
images List<BinaryFile>
The list of image files in the EPUB document.
final
others List<BinaryFile>
The list of other files in the EPUB document.
final
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.
override

Operators

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