Return the File object of the specified file. Pass in the name of the file.
static Future<File> get(String fileName) async { final path = await localPath; return File('$path/$fileName'); }