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