copyWith method
Implementation
ClusterOptions copyWith({
core.Map<String, AttributeValue>? attributes,
Optional<Object?>? userData
}) {
return ClusterOptions(
attributes: attributes ?? this.attributes,
userData: userData != null ? userData.value : this.userData
);
}