open static method
Opens and parses the RAR archive at filePath.
Returns a RarFile containing the archive entries. Throws a RarException if parsing or opening fails.
Implementation
static Future<RarFileImpl> open(String filePath) async {
return openFile(File(filePath));
}