Cluster_SecondaryConfig constructor

Cluster_SecondaryConfig({
  1. String? primaryClusterName,
})

Implementation

factory Cluster_SecondaryConfig({
  $core.String? primaryClusterName,
}) {
  final $result = create();
  if (primaryClusterName != null) {
    $result.primaryClusterName = primaryClusterName;
  }
  return $result;
}