getMetadata method

Future<EpubMetadata> getMetadata()

Implementation

Future<EpubMetadata> getMetadata() async {
  checkEpubLoaded();
  final result =
      await webViewController!.evaluateJavascript(source: 'getBookInfo()');
  return EpubMetadata.fromJson(result);
}