setFlow method
Set EpubFlow value
Implementation
Future<void> setFlow({required EpubFlow flow}) async {
checkEpubLoaded();
await webViewController?.callAsyncJavaScript(
functionBody: 'setFlow(flow)',
arguments: {'flow': flow.name},
);
}