checkHealth method

  1. @override
Future<AdapterHealthStatus> checkHealth()
override

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

@override
Future<AdapterHealthStatus> checkHealth() async => AdapterHealthStatus.healthy;