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