Saves the provided file with the specified filename.
file
filename
Returns a Future that completes with the saved file path.
Future<String> save(String filename, File file) { return saveAsBytes(filename, file.readAsBytesSync()); }