copyWith method
Implementation
ElicitationSessionScope copyWith({
Object? sessionId = _acpCopyWithAbsent,
Object? toolCallId = _acpCopyWithAbsent,
}) => ElicitationSessionScope(
sessionId: identical(sessionId, _acpCopyWithAbsent)
? this.sessionId
: sessionId as SessionId,
toolCallId: identical(toolCallId, _acpCopyWithAbsent)
? this.toolCallId
: toolCallId as ToolCallId?,
);