EpubTheme.custom constructor
Custom theme option ,
Implementation
factory EpubTheme.custom({
required Color backgroundColor,
required Color foregroundColor,
}) {
return EpubTheme._(
backgroundColor: backgroundColor,
foregroundColor: foregroundColor,
themeType: EpubThemeType.custom,
);
}