copyWith method

PostWorkspaceSecretResponseModel copyWith({
  1. String? type,
  2. String? secretId,
  3. String? name,
})

Implementation

PostWorkspaceSecretResponseModel copyWith(
    {String? type, String? secretId, String? name}) {
  return PostWorkspaceSecretResponseModel(
      type: type ?? this.type,
      secretId: secretId ?? this.secretId,
      name: name ?? this.name);
}