ensureInstalled static method

Future<void> ensureInstalled()

Implementation

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