open static method

Future<RarFileImpl> open(
  1. String filePath
)

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));
}