HealthCheckServiceReference.fromJson constructor

HealthCheckServiceReference.fromJson(
  1. Map json_
)

Implementation

HealthCheckServiceReference.fromJson(core.Map json_)
    : this(
        healthCheckService: json_.containsKey('healthCheckService')
            ? json_['healthCheckService'] as core.String
            : null,
      );