exportData method

Future<String> exportData(
  1. String filename
)

Exports data to a JSON file

filename is the name of the file to export to

Implementation

Future<String> exportData(String filename) {
  return _storageManager.exportToJson(filename);
}