removeUnderline method

void removeUnderline({
  1. required String cfi,
})

Removes a underline from epub viewer

Implementation

void removeUnderline({required String cfi}) {
  checkEpubLoaded();
  webViewController?.callAsyncJavaScript(
    functionBody: 'removeUnderLine(cfi)',
    arguments: {'cfi': cfi},
  );
}