checkHealth method

Future<AdapterHealthStatus> checkHealth()

Checks the health of the remote adapter.

Returns AdapterHealthStatus.ok by default. Adapters should override this to provide a meaningful health check (e.g., ping a server endpoint).

Implementation

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