copyWith method
Implementation
PostWorkspaceSecretRequest copyWith(
{String? type, String? name, String? $value}) {
return PostWorkspaceSecretRequest(
type: type ?? this.type,
name: name ?? this.name,
$value: $value ?? this.$value);
}