export static method

Future<void> export(
  1. String fileName
)

Export data to a file with fileName.

No encryption is specifically performed.

Implementation

static Future<void> export(String fileName) async {
  await DatabaseExporter.export(fileName, _db._data);
}