listRarContents method
List contents of a RAR file.
rarFilePath - Path to the RAR file
password - Optional password for encrypted RAR files
Returns a map with:
- 'success': bool - Whether the listing was successful
- 'message': String - Status message or error description
- 'files':
List<String>- List of file names in the archive
Implementation
Future<Map<String, dynamic>> listRarContents({
required String rarFilePath,
String? password,
}) {
throw UnimplementedError('listRarContents() has not been implemented.');
}