removeUnderline method
Removes a underline from epub viewer
Implementation
void removeUnderline({required String cfi}) {
checkEpubLoaded();
webViewController?.callAsyncJavaScript(
functionBody: 'removeUnderLine(cfi)',
arguments: {'cfi': cfi},
);
}