HttpHealthCheck.fromJson constructor
HttpHealthCheck.fromJson(
- Map json_
Implementation
HttpHealthCheck.fromJson(core.Map json_)
: this(
checkIntervalSec: json_['checkIntervalSec'] as core.int?,
creationTimestamp: json_['creationTimestamp'] as core.String?,
description: json_['description'] as core.String?,
healthyThreshold: json_['healthyThreshold'] as core.int?,
host: json_['host'] as core.String?,
id: json_['id'] as core.String?,
kind: json_['kind'] as core.String?,
name: json_['name'] as core.String?,
port: json_['port'] as core.int?,
requestPath: json_['requestPath'] as core.String?,
selfLink: json_['selfLink'] as core.String?,
timeoutSec: json_['timeoutSec'] as core.int?,
unhealthyThreshold: json_['unhealthyThreshold'] as core.int?,
);