export method

Future<void> export({
  1. required List<String> storeNames,
})

Creates an archive at pathToArchive containing the specified stores and their tiles

If a file already exists at pathToArchive, it will be overwritten.

Implementation

Future<void> export({
  required List<String> storeNames,
}) =>
    FMTCBackendAccess.internal
        .exportStores(storeNames: storeNames, path: pathToArchive);