Cluster_PrimaryConfig constructor

Cluster_PrimaryConfig({
  1. Iterable<String>? secondaryClusterNames,
})

Implementation

factory Cluster_PrimaryConfig({
  $core.Iterable<$core.String>? secondaryClusterNames,
}) {
  final $result = create();
  if (secondaryClusterNames != null) {
    $result.secondaryClusterNames.addAll(secondaryClusterNames);
  }
  return $result;
}