extractRarFile method
Extract a RAR file to a destination directory.
rarFilePath - Path to the RAR file
destinationPath - Directory where files will be extracted
password - Optional password for encrypted RAR files
Returns a map with:
- 'success': bool - Whether the extraction was successful
- 'message': String - Status message or error description
Implementation
Future<Map<String, dynamic>> extractRarFile({
required String rarFilePath,
required String destinationPath,
String? password,
}) {
throw UnimplementedError('extractRarFile() has not been implemented.');
}