EpubTheme.light constructor
EpubTheme.light()
Uses light theme, white background and black foreground color
Implementation
factory EpubTheme.light() {
return EpubTheme._(
backgroundColor: Colors.white,
foregroundColor: Colors.black,
themeType: EpubThemeType.light,
);
}