importData method

Future<void> importData(
  1. String filePath
)

Imports data from a JSON file

filePath is the path to the file to import from

Implementation

Future<void> importData(String filePath) {
  return _storageManager.importFromJson(filePath);
}