HealthIndicatorCheck typedef

HealthIndicatorCheck = ({Map<String, dynamic>? details, HealthStatus status})

A record type representing the result of a health indicator check, containing the status and optional details about the check.

Implementation

typedef HealthIndicatorCheck = ({
  HealthStatus status,
  Map<String, dynamic>? details,
});