checkHealth method

Future<AdapterHealthStatus> checkHealth()

Checks the health of the local adapter.

Returns AdapterHealthStatus.ok 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;