copyWith method
Implementation
ConversationHistoryTranscriptToolResultCommonModel copyWith(
{dynamic type,
String? requestId,
String? toolName,
String? resultValue,
bool? isError,
bool? toolHasBeenCalled,
double? toolLatencySecs}) {
return ConversationHistoryTranscriptToolResultCommonModel(
type: type ?? this.type,
requestId: requestId ?? this.requestId,
toolName: toolName ?? this.toolName,
resultValue: resultValue ?? this.resultValue,
isError: isError ?? this.isError,
toolHasBeenCalled: toolHasBeenCalled ?? this.toolHasBeenCalled,
toolLatencySecs: toolLatencySecs ?? this.toolLatencySecs);
}