GKE constructor

GKE({
  1. String? cluster,
  2. String? location,
  3. String? namespace,
  4. String? service,
  5. String? path,
})

Implementation

factory GKE({
  $core.String? cluster,
  $core.String? location,
  $core.String? namespace,
  $core.String? service,
  $core.String? path,
}) {
  final $result = create();
  if (cluster != null) {
    $result.cluster = cluster;
  }
  if (location != null) {
    $result.location = location;
  }
  if (namespace != null) {
    $result.namespace = namespace;
  }
  if (service != null) {
    $result.service = service;
  }
  if (path != null) {
    $result.path = path;
  }
  return $result;
}