uninstall method
Free the engine + worker isolate. Keeps the downloaded model on disk — re-installing reuses it.
Implementation
Future<void> uninstall() async {
await _runtime.dispose();
_persona = null;
_state.add(const SyniNotInstalled());
}
Free the engine + worker isolate. Keeps the downloaded model on disk — re-installing reuses it.
Future<void> uninstall() async {
await _runtime.dispose();
_persona = null;
_state.add(const SyniNotInstalled());
}