setFlow method

Future<void> setFlow({
  1. required EpubFlow flow,
})

Set EpubFlow value

Implementation

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