HealthCheck.fromJson constructor
HealthCheck.fromJson(
- Map json_
Implementation
HealthCheck.fromJson(core.Map json_)
: this(
checkInterval: json_['checkInterval'] as core.String?,
disableHealthCheck: json_['disableHealthCheck'] as core.bool?,
healthyThreshold: json_['healthyThreshold'] as core.int?,
host: json_['host'] as core.String?,
restartThreshold: json_['restartThreshold'] as core.int?,
timeout: json_['timeout'] as core.String?,
unhealthyThreshold: json_['unhealthyThreshold'] as core.int?,
);