copyWith method

PatchWorkspaceSecretRequest copyWith({
  1. String? type,
  2. String? name,
  3. String? $value,
})

Implementation

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