ensureInstalled static method
Implementation
static Future<void> ensureInstalled() async {
if (!await _isInstalled()) {
warn('Portable Unstructured not found, installing...');
await _installPortableUnstructured();
success('Portable Unstructured installation complete.');
}
}