copyWithWrapped method
Implementation
ConversationHistoryTranscriptToolCallClientDetails copyWithWrapped(
{Wrapped<String?>? type, Wrapped<String>? parameters}) {
return ConversationHistoryTranscriptToolCallClientDetails(
type: (type != null ? type.value : this.type),
parameters: (parameters != null ? parameters.value : this.parameters));
}