getMetadata method

Future<EpubMetadata> getMetadata()

Implementation

Future<EpubMetadata> getMetadata() async {
  final result = await _request('getBookInfo');
  return EpubMetadata.fromJson(Utils.asStringMap(result));
}