updateTheme method

dynamic updateTheme({
  1. required EpubTheme theme,
})

Implementation

updateTheme({required EpubTheme theme}) async {
  String? foregroundColor = theme.foregroundColor?.toHex();
  await webViewController?.callMethod('updateTheme', [
    '',
    foregroundColor,
    theme.customCss,
  ]);
}