GkeCluster.fromJson constructor

GkeCluster.fromJson(
  1. Map json_
)

Implementation

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