checkHealth method
Checks the health of the local adapter.
Returns AdapterHealthStatus.healthy by default. Adapters should override this to provide a meaningful health check (e.g., check if a database file is accessible).
Implementation
Future<AdapterHealthStatus> checkHealth() async => AdapterHealthStatus.healthy;