GkeNodePoolAutoscalingConfig.fromJson constructor
GkeNodePoolAutoscalingConfig.fromJson(
- Map json_
Implementation
GkeNodePoolAutoscalingConfig.fromJson(core.Map json_)
: this(
maxNodeCount: json_.containsKey('maxNodeCount')
? json_['maxNodeCount'] as core.int
: null,
minNodeCount: json_.containsKey('minNodeCount')
? json_['minNodeCount'] as core.int
: null,
);