Save the file to the specified path
Future<File> save(String path) async { final file = File(path); final bytes = await _cachedBytes; await file.writeAsBytes(bytes); return file; }