BareMetalKubeletConfig.fromJson constructor

BareMetalKubeletConfig.fromJson(
  1. Map json_
)

Implementation

BareMetalKubeletConfig.fromJson(core.Map json_)
    : this(
        registryBurst: json_['registryBurst'] as core.int?,
        registryPullQps: json_['registryPullQps'] as core.int?,
        serializeImagePullsDisabled:
            json_['serializeImagePullsDisabled'] as core.bool?,
      );