GkeCluster.fromJson constructor

GkeCluster.fromJson(
  1. Map json_
)

Implementation

GkeCluster.fromJson(core.Map json_)
  : this(
      cluster: json_['cluster'] as core.String?,
      dnsEndpoint: json_['dnsEndpoint'] as core.bool?,
      internalIp: json_['internalIp'] as core.bool?,
      proxyUrl: json_['proxyUrl'] as core.String?,
    );