exportToOdt method

Future<Uint8List> exportToOdt()

Exports as native ODT (OpenDocument) file.

Implementation

Future<Uint8List> exportToOdt() async {
  await _prefetchImages();
  return await OdtExporter(document, imageCache: _imageCache).build();
}