manual method

Future<void> manual(
  1. File outputFile
)

Export the store to a specified outputFile

It is recommended to use withGUI instead. This is only provided for finer control.

Implementation

Future<void> manual(File outputFile) async {
  await compute(_export, _access.absolute.path);
  await File('${_access.absolute.path}.zip').rename(outputFile.absolute.path);
}