saveFile static method
Saves the file in the local storage
Implementation
@visibleForTesting
static void saveFile(File file, Uint8List bytes) {
file.create(recursive: true);
file.writeAsBytes(bytes);
_cachedPaths.add(file.path);
}
Saves the file in the local storage
@visibleForTesting
static void saveFile(File file, Uint8List bytes) {
file.create(recursive: true);
file.writeAsBytes(bytes);
_cachedPaths.add(file.path);
}